| /dokuwiki/_test/tests/conf/ |
| H A D | CascadeProtectedTest.php | 16 $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 D | Configuration.php | 23 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 D | Setting.php | 13 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 D | SettingCompression.php | 10 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 D | SettingLicense.php | 10 protected $choices = ['']; // none choosen 13 public function initialize($default = null, $local = null, $protected = null) argument 22 parent::initialize($default, $local, $protected);
|
| H A D | SettingRenderer.php | 16 protected $prompts = []; 17 protected $format; 20 public function initialize($default = null, $local = null, $protected = null) argument 34 parent::initialize($default, $local, $protected);
|
| H A D | SettingDirchoice.php | 10 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 D | Notice.php | 12 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 D | MediaFile.php | 9 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 D | Client.php | 17 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 D | Display.php | 10 protected $mediaFile; 13 protected $relativeDisplay; 16 protected $scrollIntoView = false; 85 protected function formatDate() 96 protected function formatDimensions($empty = ' ') 108 protected function formatFileSize() 114 protected function formatDisplayName()
|
| /dokuwiki/inc/Ui/ |
| H A D | Diff.php | 16 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 D | Admin.php | 20 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 D | Base.php | 18 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 D | UserMenu.php | 12 protected $view = 'user'; 14 protected $types = ['Profile', 'Admin', 'Register', 'Login'];
|
| H A D | SiteMenu.php | 12 protected $view = 'site'; 14 protected $types = ['Recent', 'Media', 'Index'];
|
| H A D | PageMenu.php | 12 protected $view = 'page'; 14 protected $types = ['Edit', 'Revert', 'Revisions', 'Backlink', 'Subscribe', 'Top'];
|
| H A D | DetailMenu.php | 13 protected $view = 'detail'; 15 protected $types = ['MediaManager', 'ImgBackto', 'Top'];
|
| /dokuwiki/vendor/splitbrain/lesserphp/src/ |
| H A D | ParserException.php | 10 protected string $error = ''; 11 protected string $culprit = ''; 12 protected string $sourceFile = ''; 13 protected int $sourceLine = -1;
|
| /dokuwiki/inc/Parsing/Handler/ |
| H A D | Table.php | 7 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 D | PluginController.php | 18 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 D | ActionRouter.php | 20 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 D | DocBlock.php | 10 protected $reflector; 13 protected $summary = ''; 16 protected $description = ''; 19 protected $tags = []; 65 protected function getContext()
|
| /dokuwiki/inc/parser/ |
| H A D | xhtmlsummary.php | 22 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 D | auth.php | 18 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 …]
|