Searched +full:manager -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 59) sorted by relevance
123
| /dokuwiki/lib/plugins/extension/_test/ |
| H A D | ManagerTest.php | 6 use dokuwiki\plugin\extension\Manager; alias 11 * Tests for the Manager class 21 * Tests a full cycle of manager.dat operations 31 $manager = new Manager($extension); 33 $this->assertNull($manager->getLastUpdate()); 34 $this->assertEmpty($manager->getDownloadURL()); 36 $manager->storeUpdate('http://example.com/firstinstall'); 38 $this->assertFileExists($root . '/manager.dat'); 39 $content = file_get_contents($root . '/manager.dat'); 43 $updated = $manager->getLastUpdate(); [all …]
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | Manager.php | 8 class Manager class 13 /** @var string path to the manager.dat */ 16 /** @var array the data from the manager.dat */ 20 * Initialize the Manager 27 $this->path = $this->extension->getInstallDir() . '/manager.dat'; 32 * This updates the timestamp and URL in the manager.dat file 58 * Reads the manager.dat file and fills the managerInfo array 70 // backwards compatible with old plugin manager
|
| H A D | plugin.info.txt | 5 name Extension Manager
|
| H A D | Extension.php | 55 /** @var Manager|null The manager for this extension */ 56 protected ?Manager $manager = null; variable in dokuwiki\\plugin\\extension\\Extension 760 * Access the Manager for this extension 762 * @return Manager 766 if (!$this->manager instanceof Manager) { 767 $this->manager = new Manager($this); 769 return $this->manager;
|
| /dokuwiki/_test/tests/Subscriptions/ |
| H A D | BulkSubscriptionsSenderTest.php | 35 $manager = new SubscriberManager(); 41 $manager->add('sub1:', 'testuser', 'digest', '978328800'); // last mod 2001-01-01 63 $manager->add('sub1:', 'testuser', 'digest', '978328800'); // last mod 2001-01-01 77 $manager = new SubscriberManager(); 83 $manager->add('sub1:', 'testuser', 'list', '978328800'); // last mod 2001-01-01 105 $manager->add('sub1:', 'testuser', 'list', '978328800'); // last mod 2001-01-01
|
| /dokuwiki/_test/tests/inc/ |
| H A D | auth_admincheck.test.php | 63 $conf['manager'] = 'john,@managers,doe, @Mötly Böys, Dänny'; 68 // admin or manager users 75 // admin or manager groups 108 $conf['manager'] = 'john,@managers,doe, @Mötly Böys, Dänny'; 113 // admin or manager users 120 // admin or manager groups 155 $conf['manager'] = '@managers';
|
| /dokuwiki/inc/Menu/Item/ |
| H A D | MediaManager.php | 8 * Opens the current image in the media manager. Used on image detail view. 21 throw new \RuntimeException("media manager link only with upload permissions");
|
| H A D | Media.php | 8 * Opens the media manager
|
| /dokuwiki/inc/Ui/ |
| H A D | Admin.php | 37 $this->showMenu('manager'); 47 * @param string $type admin|manager|other 123 * Checks the current permissions to decide on manager or admin plugins 132 $menu = ['admin' => [], 'manager' => [], 'other' => []]; 145 $type = 'manager'; 160 uasort($menu['manager'], $this->menuSort(...));
|
| /dokuwiki/lib/plugins/authldap/conf/ |
| H A D | default.php | 15 //$conf['mapping']['name'] unsupported in config manager 16 //$conf['mapping']['grps'] unsupported in config manager
|
| H A D | metadata.php | 16 //$meta['mapping']['name'] unsupported in config manager 17 //$meta['mapping']['grps'] unsupported in config manager
|
| /dokuwiki/lib/plugins/config/core/Setting/ |
| H A D | SettingHidden.php | 10 // Used to explicitly ignore a setting in the configuration manager.
|
| /dokuwiki/lib/plugins/config/ |
| H A D | plugin.info.txt | 5 name Configuration Manager
|
| /dokuwiki/lib/plugins/usermanager/ |
| H A D | plugin.info.txt | 5 name User Manager
|
| H A D | style.css | 1 /* User Manager specific styles */
|
| /dokuwiki/lib/plugins/acl/ |
| H A D | plugin.info.txt | 5 name ACL Manager
|
| /dokuwiki/lib/plugins/revert/ |
| H A D | plugin.info.txt | 5 name Revert Manager
|
| /dokuwiki/_test/conf/ |
| H A D | plugins.local.php | 4 * Auto-generated through plugin/extension manager
|
| H A D | acl.auth.php | 8 # Manager interface instead.
|
| /dokuwiki/inc/Action/ |
| H A D | Media.php | 8 * The full screen media manager
|
| /dokuwiki/conf/ |
| H A D | acl.auth.php.dist | 8 # Manager interface instead.
|
| H A D | plugins.required.php | 4 * from changes by the extension manager. These settings will override any local settings.
|
| /dokuwiki/inc/Remote/Response/ |
| H A D | User.php | 20 /** @var bool Whether the user is a manager */ 61 // check for admin and manager
|
| /dokuwiki/_test/tests/conf/ |
| H A D | CascadeNormalTest.php | 34 …ssertEquals('My Test Wiki', $conf['title'], 'overriden in local.php (values from Config manager)');
|
| H A D | CascadeProtectedTest.php | 16 $out = "<?php\n/*\n * protected settings, cannot modified in the Config manager\n" .
|
123