| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,54 @@ |
| 1 |
+<?php |
|
| 2 |
+/** |
|
| 3 |
+ * @copyright 2021 Double Bastion LLC <www.doublebastion.com> |
|
| 4 |
+ * |
|
| 5 |
+ * @author Double Bastion LLC |
|
| 6 |
+ * |
|
| 7 |
+ * @license GNU AGPL version 3 or any later version |
|
| 8 |
+ * |
|
| 9 |
+ * This program is free software; you can redistribute it and/or |
|
| 10 |
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE |
|
| 11 |
+ * License as published by the Free Software Foundation; either |
|
| 12 |
+ * version 3 of the License, or any later version. |
|
| 13 |
+ * |
|
| 14 |
+ * This program is distributed in the hope that it will be useful, |
|
| 15 |
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 16 |
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 17 |
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details. |
|
| 18 |
+ * |
|
| 19 |
+ * You should have received a copy of the GNU Affero General Public |
|
| 20 |
+ * License along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
| 21 |
+ * |
|
| 22 |
+ */ |
|
| 23 |
+ |
|
| 24 |
+declare(strict_types=1); |
|
| 25 |
+ |
|
| 26 |
+namespace OCA\SIPTripPhone\Controller; |
|
| 27 |
+ |
|
| 28 |
+use \OCP\IRequest; |
|
| 29 |
+use \OCP\AppFramework\Http\TemplateResponse; |
|
| 30 |
+use \OCP\AppFramework\Http\DataResponse; |
|
| 31 |
+use \OCP\AppFramework\Controller; |
|
| 32 |
+ |
|
| 33 |
+ |
|
| 34 |
+class PageController extends Controller {
|
|
| 35 |
+ |
|
| 36 |
+ public function __construct($AppName, IRequest $request){
|
|
| 37 |
+ parent::__construct($AppName, $request); |
|
| 38 |
+ } |
|
| 39 |
+ |
|
| 40 |
+ /** |
|
| 41 |
+ * CAUTION: the @Stuff turns off security checks; for this page no admin is |
|
| 42 |
+ * required and no CSRF check. If you don't know what CSRF is, read |
|
| 43 |
+ * it up in the docs or you might create a security hole. This is |
|
| 44 |
+ * basically the only required method to add this exemption, don't |
|
| 45 |
+ * add it to any other method if you don't exactly know what it does |
|
| 46 |
+ * |
|
| 47 |
+ * @NoAdminRequired |
|
| 48 |
+ * @NoCSRFRequired |
|
| 49 |
+ */ |
|
| 50 |
+ |
|
| 51 |
+ public function index() {
|
|
| 52 |
+ return new TemplateResponse('sip_trip_phone', 'index');
|
|
| 53 |
+ } |
|
| 54 |
+} |
|
| 0 | 55 |
\ No newline at end of file |
| 1 | 1 |
deleted file mode 100644 |
| ... | ... |
@@ -1,54 +0,0 @@ |
| 1 |
-<?php |
|
| 2 |
-/** |
|
| 3 |
- * @copyright 2021 Double Bastion LLC <www.doublebastion.com> |
|
| 4 |
- * |
|
| 5 |
- * @author Double Bastion LLC |
|
| 6 |
- * |
|
| 7 |
- * @license GNU AGPL version 3 or any later version |
|
| 8 |
- * |
|
| 9 |
- * This program is free software; you can redistribute it and/or |
|
| 10 |
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE |
|
| 11 |
- * License as published by the Free Software Foundation; either |
|
| 12 |
- * version 3 of the License, or any later version. |
|
| 13 |
- * |
|
| 14 |
- * This program is distributed in the hope that it will be useful, |
|
| 15 |
- * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 16 |
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 17 |
- * GNU AFFERO GENERAL PUBLIC LICENSE for more details. |
|
| 18 |
- * |
|
| 19 |
- * You should have received a copy of the GNU Affero General Public |
|
| 20 |
- * License along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
| 21 |
- * |
|
| 22 |
- */ |
|
| 23 |
- |
|
| 24 |
-declare(strict_types=1); |
|
| 25 |
- |
|
| 26 |
-namespace OCA\SIPTripPhone\Controller; |
|
| 27 |
- |
|
| 28 |
-use \OCP\IRequest; |
|
| 29 |
-use \OCP\AppFramework\Http\TemplateResponse; |
|
| 30 |
-use \OCP\AppFramework\Http\DataResponse; |
|
| 31 |
-use \OCP\AppFramework\Controller; |
|
| 32 |
- |
|
| 33 |
- |
|
| 34 |
-class PageController extends Controller {
|
|
| 35 |
- |
|
| 36 |
- public function __construct($AppName, IRequest $request){
|
|
| 37 |
- parent::__construct($AppName, $request); |
|
| 38 |
- } |
|
| 39 |
- |
|
| 40 |
- /** |
|
| 41 |
- * CAUTION: the @Stuff turns off security checks; for this page no admin is |
|
| 42 |
- * required and no CSRF check. If you don't know what CSRF is, read |
|
| 43 |
- * it up in the docs or you might create a security hole. This is |
|
| 44 |
- * basically the only required method to add this exemption, don't |
|
| 45 |
- * add it to any other method if you don't exactly know what it does |
|
| 46 |
- * |
|
| 47 |
- * @NoAdminRequired |
|
| 48 |
- * @NoCSRFRequired |
|
| 49 |
- */ |
|
| 50 |
- |
|
| 51 |
- public function index() {
|
|
| 52 |
- return new TemplateResponse('sip_trip_phone', 'index');
|
|
| 53 |
- } |
|
| 54 |
-} |
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,54 @@ |
| 1 |
+<?php |
|
| 2 |
+/** |
|
| 3 |
+ * @copyright 2021 Double Bastion LLC <www.doublebastion.com> |
|
| 4 |
+ * |
|
| 5 |
+ * @author Double Bastion LLC |
|
| 6 |
+ * |
|
| 7 |
+ * @license GNU AGPL version 3 or any later version |
|
| 8 |
+ * |
|
| 9 |
+ * This program is free software; you can redistribute it and/or |
|
| 10 |
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE |
|
| 11 |
+ * License as published by the Free Software Foundation; either |
|
| 12 |
+ * version 3 of the License, or any later version. |
|
| 13 |
+ * |
|
| 14 |
+ * This program is distributed in the hope that it will be useful, |
|
| 15 |
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 16 |
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 17 |
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details. |
|
| 18 |
+ * |
|
| 19 |
+ * You should have received a copy of the GNU Affero General Public |
|
| 20 |
+ * License along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
| 21 |
+ * |
|
| 22 |
+ */ |
|
| 23 |
+ |
|
| 24 |
+declare(strict_types=1); |
|
| 25 |
+ |
|
| 26 |
+namespace OCA\SIPTripPhone\Controller; |
|
| 27 |
+ |
|
| 28 |
+use \OCP\IRequest; |
|
| 29 |
+use \OCP\AppFramework\Http\TemplateResponse; |
|
| 30 |
+use \OCP\AppFramework\Http\DataResponse; |
|
| 31 |
+use \OCP\AppFramework\Controller; |
|
| 32 |
+ |
|
| 33 |
+ |
|
| 34 |
+class PageController extends Controller {
|
|
| 35 |
+ |
|
| 36 |
+ public function __construct($AppName, IRequest $request){
|
|
| 37 |
+ parent::__construct($AppName, $request); |
|
| 38 |
+ } |
|
| 39 |
+ |
|
| 40 |
+ /** |
|
| 41 |
+ * CAUTION: the @Stuff turns off security checks; for this page no admin is |
|
| 42 |
+ * required and no CSRF check. If you don't know what CSRF is, read |
|
| 43 |
+ * it up in the docs or you might create a security hole. This is |
|
| 44 |
+ * basically the only required method to add this exemption, don't |
|
| 45 |
+ * add it to any other method if you don't exactly know what it does |
|
| 46 |
+ * |
|
| 47 |
+ * @NoAdminRequired |
|
| 48 |
+ * @NoCSRFRequired |
|
| 49 |
+ */ |
|
| 50 |
+ |
|
| 51 |
+ public function index() {
|
|
| 52 |
+ return new TemplateResponse('sip_trip_phone', 'index');
|
|
| 53 |
+ } |
|
| 54 |
+} |