Home
last modified time | relevance | path

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 DManagerTest.php6 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 DManager.php8 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 Dplugin.info.txt5 name Extension Manager
H A DExtension.php55 /** @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 DBulkSubscriptionsSenderTest.php35 $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 Dauth_admincheck.test.php63 $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 DMediaManager.php8 * 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 DMedia.php8 * Opens the media manager
/dokuwiki/inc/Ui/
H A DAdmin.php37 $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 Ddefault.php15 //$conf['mapping']['name'] unsupported in config manager
16 //$conf['mapping']['grps'] unsupported in config manager
H A Dmetadata.php16 //$meta['mapping']['name'] unsupported in config manager
17 //$meta['mapping']['grps'] unsupported in config manager
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingHidden.php10 // Used to explicitly ignore a setting in the configuration manager.
/dokuwiki/lib/plugins/config/
H A Dplugin.info.txt5 name Configuration Manager
/dokuwiki/lib/plugins/usermanager/
H A Dplugin.info.txt5 name User Manager
H A Dstyle.css1 /* User Manager specific styles */
/dokuwiki/lib/plugins/acl/
H A Dplugin.info.txt5 name ACL Manager
/dokuwiki/lib/plugins/revert/
H A Dplugin.info.txt5 name Revert Manager
/dokuwiki/_test/conf/
H A Dplugins.local.php4 * Auto-generated through plugin/extension manager
H A Dacl.auth.php8 # Manager interface instead.
/dokuwiki/inc/Action/
H A DMedia.php8 * The full screen media manager
/dokuwiki/conf/
H A Dacl.auth.php.dist8 # Manager interface instead.
H A Dplugins.required.php4 * from changes by the extension manager. These settings will override any local settings.
/dokuwiki/inc/Remote/Response/
H A DUser.php20 /** @var bool Whether the user is a manager */
61 // check for admin and manager
/dokuwiki/_test/tests/conf/
H A DCascadeNormalTest.php34 …ssertEquals('My Test Wiki', $conf['title'], 'overriden in local.php (values from Config manager)');
H A DCascadeProtectedTest.php16 $out = "<?php\n/*\n * protected settings, cannot modified in the Config manager\n" .

123