Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
apps /
external /
appinfo /
Delete
Unzip
Name
Size
Permission
Date
Action
app.php
1.46
KB
-rw-r--r--
2018-04-19 18:15
info.xml
1003
B
-rw-r--r--
2018-04-19 18:15
routes.php
417
B
-rw-r--r--
2018-04-19 18:15
signature.json
27.74
KB
-rw-r--r--
2018-04-19 18:18
Save
Rename
<?php /** * ownCloud - External app * * @author Frank Karlitschek * @copyright 2012 Frank Karlitschek frank@owncloud.org * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * License as published by the Free Software Foundation; either * version 3 of the License, or any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU AFFERO GENERAL PUBLIC LICENSE for more details. * * You should have received a copy of the GNU Affero General Public * License along with this library. If not, see <http://www.gnu.org/licenses/>. * */ use OCA\External\External; OCP\App::registerAdmin('external', 'settings'); $sites = External::getSites(); if (!empty($sites)) { $urlGenerator = \OC::$server->getURLGenerator(); $navigationManager = \OC::$server->getNavigationManager(); for ($i = 0; $i < sizeof($sites); $i++) { $navigationEntry = function () use ($i, $urlGenerator, $sites) { return [ 'id' => 'external_index' . ($i + 1), 'order' => 80 + $i, 'href' => $urlGenerator->linkToRoute('external_index', ['id'=> $i + 1]), 'icon' => $urlGenerator->imagePath('external', !empty($sites[$i][2]) ? $sites[$i][2] : 'external.svg'), 'name' => $sites[$i][0], ]; }; $navigationManager->add($navigationEntry); } }