Home
last modified time | relevance | path

Searched +full:protected -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 456) sorted by relevance

12345678910>>...19

/dokuwiki/_test/tests/conf/
H A DCascadeProtectedTest.php16 $out = "<?php\n/*\n * protected settings, cannot modified in the Config manager\n" .
18 $out .= "\$conf['title'] = 'Protected Title';\n";
19 $out .= "\$conf['tagline'] = 'Protected Tagline';\n";
21 $out .= "\$conf['plugin']['testing']['second'] = 'Protected setting';\n";
23 file_put_contents(end($config_cascade['main']['protected']), $out);
32 … $this->assertEquals('Protected Title', $conf['title'], 'protected local value, overrides local');
33 …$this->assertEquals('Protected Tagline', $conf['tagline'], 'protected local value, override defaul…
36 $this->assertEquals(1, $testing->getConf('schnibble'), 'protected local value, ');
37 … $this->assertEquals('Protected setting', $testing->getConf('second'), 'protected local value');
44 unlink(end($config_cascade['main']['protected']));
/dokuwiki/lib/plugins/config/core/
H A DConfiguration.php23 protected $settings = [];
25 protected $undefined = [];
28 protected $metadata;
30 protected $default;
32 protected $local;
33 /** @var array all protected settings */
34 protected $protected; variable in dokuwiki\\plugin\\config\\core\\Configuration
37 protected $changed = false;
40 protected $loader;
42 protected $writer;
[all …]
/dokuwiki/lib/plugins/config/core/Setting/
H A DSetting.php13 protected $key = '';
16 protected $default;
18 protected $local;
19 /** @var mixed the protected value of this setting */
20 protected $protected; variable in dokuwiki\\plugin\\config\\core\\Setting\\Setting
23 protected static $validCautions = ['warning', 'danger', 'security'];
25 protected $pattern = '';
26 protected $error = false; // only used by those classes which error check
27 protected $input; // only used by those classes which error check
28 protected $caution; // used by any setting to provide an alert along with the setting
[all …]
H A DSettingCompression.php10 protected $choices = ['0']; // 0 = no compression, always supported
13 public function initialize($default = null, $local = null, $protected = null) argument
20 parent::initialize($default, $local, $protected);
H A DSettingLicense.php10 protected $choices = ['']; // none choosen
13 public function initialize($default = null, $local = null, $protected = null) argument
22 parent::initialize($default, $local, $protected);
H A DSettingRenderer.php16 protected $prompts = [];
17 protected $format;
20 public function initialize($default = null, $local = null, $protected = null) argument
34 parent::initialize($default, $local, $protected);
H A DSettingDirchoice.php10 protected $dir = '';
13 public function initialize($default = null, $local = null, $protected = null) argument
32 parent::initialize($default, $local, $protected);
/dokuwiki/lib/plugins/extension/
H A DNotice.php12 protected const ICONS = [
19 protected $notices = [
27 protected $helper;
30 protected Extension $extension;
36 protected function __construct(Extension $extension)
94 protected function getLang($msg)
103 protected function checkDependencies()
125 protected function checkConflicts()
145 protected function checkSecurity()
159 protected function checkFolder()
[all …]
/dokuwiki/inc/File/
H A DMediaFile.php9 protected $id;
10 protected $rev;
11 protected $path;
13 protected $mime;
14 protected $ext;
15 protected $downloadable;
17 protected $width;
18 protected $height;
19 protected $meta;
125 protected function initSizes()
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClient.php17 protected $server;
18 protected $port;
19 protected $path;
20 protected $useragent;
21 protected $response;
23 protected $message = false;
24 protected $debug = false;
26 protected $timeout;
28 protected $timeout_io = null;
29 protected $headers = [];
[all …]
/dokuwiki/inc/Ui/Media/
H A DDisplay.php10 protected $mediaFile;
13 protected $relativeDisplay;
16 protected $scrollIntoView = false;
85 protected function formatDate()
96 protected function formatDimensions($empty = '&#160;')
108 protected function formatFileSize()
114 protected function formatDisplayName()
/dokuwiki/inc/Ui/
H A DDiff.php16 protected $id; // page id or media id
19 protected $rev1; // timestamp of older revision
21 protected $rev2; // timestamp of newer revision
24 protected $preference = [];
27 protected $changelog; // PageChangeLog or MediaChangeLog object
43 abstract protected function setChangeLog();
48 abstract protected function preProcess();
93 protected function handle()
H A DAdmin.php20 protected $forAdmins = ['usermanager', 'acl', 'extension', 'config', 'logviewer', 'styling'];
21 protected $forManagers = ['revert', 'popularity'];
23 protected $menu;
49 protected function showMenu($type)
70 protected function showVersion()
90 protected function showSecurityCheck()
104 protected function showMenuItem($item)
127 protected function getPluginList()
175 protected function menuSort($a, $b)
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php18 protected $bin;
20 protected $options;
25 protected $loglevel = array(
83 protected $logdefault = 'info';
110 abstract protected function setup(Options $options);
122 abstract protected function main(Options $options);
128 …* and finally executes main() - Each part is split into their own protected function below, so beh…
153 protected function registerDefaultOptions()
176 protected function handleDefaultOptions()
190 protected function setupLogging()
[all …]
/dokuwiki/inc/Menu/
H A DUserMenu.php12 protected $view = 'user';
14 protected $types = ['Profile', 'Admin', 'Register', 'Login'];
H A DSiteMenu.php12 protected $view = 'site';
14 protected $types = ['Recent', 'Media', 'Index'];
H A DPageMenu.php12 protected $view = 'page';
14 protected $types = ['Edit', 'Revert', 'Revisions', 'Backlink', 'Subscribe', 'Top'];
H A DDetailMenu.php13 protected $view = 'detail';
15 protected $types = ['MediaManager', 'ImgBackto', 'Top'];
/dokuwiki/vendor/splitbrain/lesserphp/src/
H A DParserException.php10 protected string $error = '';
11 protected string $culprit = '';
12 protected string $sourceFile = '';
13 protected int $sourceLine = -1;
/dokuwiki/inc/Parsing/Handler/
H A DTable.php7 protected $tableCalls = [];
8 protected $maxCols = 0;
9 protected $maxRows = 1;
10 protected $currentCols = 0;
11 protected $firstCell = false;
12 protected $lastCellType = 'tablecell';
13 protected $inTableHead = true;
14 protected $currentRow = ['tableheader' => 0, 'tablecell' => 0];
15 protected $countTableHeadRows = 0;
58 protected function tableStart($call)
[all …]
/dokuwiki/inc/Extension/
H A DPluginController.php18 protected $listByType = [];
20 protected $masterList = [];
21 protected $pluginCascade = ['default' => [], 'local' => [], 'protected' => []];
22 protected $lastLocalConfigFile = '';
171 if (array_key_exists($plugin, $this->pluginCascade['protected'])) return false;
184 if (array_key_exists($plugin, $this->pluginCascade['protected'])) return false;
202 protected function populateMasterList()
232 protected function checkRequire($files)
251 protected function saveList($forceSave = false)
287 protected function rebuildLocal()
[all …]
/dokuwiki/inc/
H A DActionRouter.php20 protected $action;
23 protected static $instance;
26 protected $transitions = 0;
29 protected const MAX_TRANSITIONS = 5;
32 protected $disabled;
35 * ActionRouter constructor. Singleton, thus protected!
40 protected function __construct()
76 protected function setupAction(&$actionname)
126 protected function transitionAction($from, $to, $e = null)
152 protected function handleFatalException(\Throwable $e)
/dokuwiki/inc/Remote/OpenApiDoc/
H A DDocBlock.php10 protected $reflector;
13 protected $summary = '';
16 protected $description = '';
19 protected $tags = [];
65 protected function getContext()
/dokuwiki/inc/parser/
H A Dxhtmlsummary.php22 protected $sum_paragraphs = 0;
23 protected $sum_capture = true;
24 protected $sum_inSection = false;
25 protected $sum_summary = '';
26 protected $sum_pageTitle = false;
/dokuwiki/lib/plugins/authplain/
H A Dauth.php18 protected $users;
21 protected $pattern = [];
24 protected $pregsplit_safe = false;
112 protected function createUserLine($user, $pass, $name, $mail, $grps)
194 // don't modify protected users
195 if (!empty($userinfo['protected'])) {
196 msg(sprintf($this->getLang('protected'), hsc($user)), -1);
250 // don't delete protected users
251 if (!empty($this->users[$user]['protected'])) {
252 msg(sprintf($this->getLang('protected'), hsc($user)), -1);
[all …]

12345678910>>...19