| /dokuwiki/lib/plugins/authpdo/_test/mysql/ |
| H A D | mybb.sql | 31 `type` tinyint(1) unsigned NOT NULL DEFAULT '2', 32 `title` varchar(120) NOT NULL DEFAULT '', 33 `description` text NOT NULL DEFAULT '', 34 `namestyle` varchar(200) NOT NULL DEFAULT '{username}', 35 `usertitle` varchar(120) NOT NULL DEFAULT '', 36 `stars` smallint(4) unsigned NOT NULL DEFAULT '0', 37 `starimage` varchar(120) NOT NULL DEFAULT '', 38 `image` varchar(120) NOT NULL DEFAULT '', 39 `disporder` smallint(6) unsigned NOT NULL DEFAULT '0', 40 `isbannedgroup` tinyint(1) NOT NULL DEFAULT '0', [all …]
|
| H A D | fluxbb.sql | 31 `g_title` varchar(50) NOT NULL DEFAULT '', 32 `g_user_title` varchar(50) DEFAULT NULL, 33 `g_promote_min_posts` int(10) unsigned NOT NULL DEFAULT '0', 34 `g_promote_next_group` int(10) unsigned NOT NULL DEFAULT '0', 35 `g_moderator` tinyint(1) NOT NULL DEFAULT '0', 36 `g_mod_edit_users` tinyint(1) NOT NULL DEFAULT '0', 37 `g_mod_rename_users` tinyint(1) NOT NULL DEFAULT '0', 38 `g_mod_change_passwords` tinyint(1) NOT NULL DEFAULT '0', 39 `g_mod_ban_users` tinyint(1) NOT NULL DEFAULT '0', 40 `g_mod_promote_users` tinyint(1) NOT NULL DEFAULT '0', [all …]
|
| H A D | wordpress.sql | 31 `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', 32 `meta_key` varchar(255) DEFAULT NULL, 37 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=52 ; 104 `user_login` varchar(60) NOT NULL DEFAULT '', 105 `user_pass` varchar(255) NOT NULL DEFAULT '', 106 `user_nicename` varchar(50) NOT NULL DEFAULT '', 107 `user_email` varchar(100) NOT NULL DEFAULT '', 108 `user_url` varchar(100) NOT NULL DEFAULT '', 109 `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', 110 `user_activation_key` varchar(255) NOT NULL DEFAULT '', [all …]
|
| /dokuwiki/inc/ |
| H A D | config_cascade.php | 4 * The default config cascade 6 * This array configures the default locations of various files in the 13 'default' => [DOKU_CONF . 'dokuwiki.php'], 18 'default' => [DOKU_CONF . 'acronyms.conf'], 22 'default' => [DOKU_CONF . 'entities.conf'], 26 'default' => [DOKU_CONF . 'interwiki.conf'], 30 'default' => [DOKU_CONF . 'license.php'], 34 'default' => [DOKU_CONF . 'manifest.json'], 38 'default' => [DOKU_CONF . 'mediameta.php'], 42 'default' => [DOKU_CONF . 'mime.conf'], [all …]
|
| H A D | farm.php | 40 * If no configuration file is found, return the default confdir './conf'. 85 // default conf directory in farm 86 if (is_dir("$farm/default/conf/")) { 87 if (!defined('DOKU_FARM')) define('DOKU_FARM', 'default'); 88 return "$farm/default/conf/"; 94 /* Use default config files and local animal config files */ 97 'default' => [DOKU_INC . 'conf/dokuwiki.php'], 102 'default' => [DOKU_INC . 'conf/acronyms.conf'], 106 'default' => [DOKU_INC . 'conf/entities.conf'], 110 'default' => [DOKU_INC . 'conf/interwiki.conf'], [all …]
|
| /dokuwiki/inc/Input/ |
| H A D | Input.php | 9 * All function access the $_REQUEST array by default, if you want to access $_POST or $_GET 111 * @param mixed $default Default to return if parameter isn't set 112 * @param bool $nonempty Return $default if parameter is set but empty() 115 public function param($name, $default = null, $nonempty = false) argument 117 if (!isset($this->access[$name])) return $default; 119 if ($nonempty && empty($value)) return $default; 138 * and intialized with the given $default value before a reference is returned 141 * @param mixed $default If parameter is not set, initialize with this value 142 * @param bool $nonempty Init with $default if parameter is set but empty() 145 public function &ref($name, $default = '', $nonempty = false) argument [all …]
|
| /dokuwiki/_test/tests/conf/ |
| H A D | CascadeExtraDefaultsTest.php | 20 $out .= "\$conf['title'] = 'New default Title';\n"; 21 $out .= "\$conf['tagline'] = 'New default Tagline';\n"; 23 $out .= "\$conf['plugin']['testing']['second'] = 'New default setting';\n"; 29 $this->oldSetting = $config_cascade['main']['default']; 31 $config_cascade['main']['default'][] = $file; 40 $this->assertEquals('New default Tagline', $conf['tagline'], 'new default value'); 42 $this->assertEquals(1, $testing->getConf('schnibble'), 'new default value'); 45 $this->assertEquals('My Test Wiki', $conf['title'], 'local value still overrides default'); 46 …>assertEquals('Local setting', $testing->getConf('second'), 'local value still overrides default'); 53 $config_cascade['main']['default'] = $this->oldSetting;
|
| H A D | CascadeNormalTest.php | 21 $this->assertEquals('start', $conf['start'], 'default value'); 22 $this->assertEquals('', $conf['tagline'], 'default value'); 27 $this->assertEquals(0, $testing->getConf('schnibble'), 'default value');
|
| /dokuwiki/lib/plugins/config/_test/ |
| H A D | LoaderExtraDefaultsTest.php | 27 $out .= "\$conf['title'] = 'New default Title';\n"; 28 $out .= "\$conf['tagline'] = 'New default Tagline';\n"; 30 $out .= "\$conf['plugin']['testing']['second'] = 'New default setting';\n"; 36 $this->oldSetting = $config_cascade['main']['default']; 38 $config_cascade['main']['default'][] = $file; 44 …re loading the defaults work, and that the extra default for plugins provided via an extra main de… 56 $this->assertEquals('New default Title', $conf['title']); 57 $this->assertEquals('New default Tagline', $conf['tagline']); 62 $this->assertEquals('New default setting', $conf['plugin____testing____second']); 70 $config_cascade['main']['default'] = $this->oldSetting;
|
| /dokuwiki/inc/Extension/ |
| H A D | Event.php | 20 * event handlers may modify this if they are preventing the default action 24 /** @var bool READONLY if true, event handlers can prevent the events default action */ 27 /** @var bool whether or not to carry out the default action associated with the event */ 57 * properly handle correct processing of any default action and issue an 61 * // default action code block 108 * - carry out the default action using $this->data based on $enablePrevent and 115 …* the value set by any <event>_before or <event> handlers if the default action is preven… 116 * or the results of the default action (as modified by <event>_after handlers) 126 'The default action of ' . $this . 146 * this function does not prevent the default action taking place [all …]
|
| /dokuwiki/lib/plugins/config/_test/Setting/ |
| H A D | SettingTest.php | 49 ['default', null, false], 50 ['default', 'default', false], 51 ['default', 'new', true], 59 * @param mixed $default The default value 63 public function testShouldBeSaved($default, $local, $expect) { argument 66 $setting->initialize($default, $local, null);
|
| /dokuwiki/_test/tests/inc/ |
| H A D | IpTest.php | 153 // The new default configuration value. 154 … $default = ['::1', 'fe80::/10', '127.0.0.0/8', '10.0.0.0/8', '172.16.0.0/12', '192.168.0.0/16']; 157 $custom = array_merge($default, ['1.2.3.4', '1122::', '3.0.0.1/8', '1111:2222::/32']); 164 [$default, '127.0.0.1', true], 165 [$default, '127.1.2.3', true], 166 [$default, '10.1.2.3', true], 167 [$default, '11.1.2.3', false], 168 [$default, '172.16.0.1', true], 169 [$default, '172.160.0.1', false], 170 [$default, '172.31.255.255', true], [all …]
|
| /dokuwiki/vendor/simplepie/simplepie/src/Cache/ |
| H A D | Psr16.php | 43 * public function get(string $key, mixed $default = null): mixed; 47 * @param mixed $default Default value to return if the key does not exist. 49 * @return array|mixed The value of the item from the cache, or $default in case of cache miss. 54 public function get_data(string $key, $default = null) argument 56 $data = $this->cache->get($key, $default); 58 if (!is_array($data) || $data === $default) { 59 return $default; 76 … the driver supports TTL then the library may set a default value
|
| H A D | BaseDataCache.php | 34 * public function get(string $key, mixed $default = null): mixed; 38 * @param mixed $default Default value to return if the key does not exist. 40 * @return array|mixed The value of the item from the cache, or $default in case of cache miss. 45 public function get_data(string $key, $default = null) argument 50 return $default; 55 return $default; 60 return $default; 80 … the driver supports TTL then the library may set a default value
|
| H A D | DataCache.php | 30 * public function get(string $key, mixed $default = null): mixed; 34 * @param mixed $default Default value to return if the key does not exist. 36 * @return array|mixed The value of the item from the cache, or $default in case of cache miss. 41 public function get_data(string $key, $default = null); argument 54 … the driver supports TTL then the library may set a default value
|
| /dokuwiki/vendor/geshi/geshi/src/geshi/ |
| H A D | rsplus.php | 71 …'agrep', 'alist', 'all', 'all.equal', 'all.equal.character', 'all.equal.default', 'all.equal.facto… 74 …'as.array.default', 'as.call', 'as.character', 'as.character.condition', 'as.character.Date', 'as.… 77 …'as.data.frame.complex', 'as.data.frame.data.frame', 'as.data.frame.Date', 'as.data.frame.default', 82 …'as.Date.default', 'as.Date.factor', 'as.Date.numeric', 'as.Date.POSIXct', 'as.Date.POSIXlt', 'as.… 83 …ime', 'as.double.POSIXlt', 'as.environment', 'as.expression', 'as.expression.default', 'as.factor', 84 …'as.function', 'as.function.default', 'as.hexmode', 'as.integer', 'as.list', 'as.list.data.frame',… 86 …matrix.data.frame', 'as.matrix.default', 'as.matrix.noquote', 'as.matrix.POSIXlt', 'as.name', 'as.… 88 …'as.POSIXct.date', 'as.POSIXct.Date', 'as.POSIXct.dates', 'as.POSIXct.default', 'as.POSIXct.numeri… 89 …POSIXlt.character', 'as.POSIXlt.date', 'as.POSIXlt.Date', 'as.POSIXlt.dates', 'as.POSIXlt.default', 91 …'as.single.default', 'as.symbol', 'as.table', 'as.table.default', 'as.vector', 'as.vector.factor',… [all …]
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ |
| H A D | RSASSA_PSS_params.php | 34 //'default' => 'sha1Identifier' 40 //'default' => 'mgf1SHA1Identifier' 47 'default' => 20 54 'default' => 1
|
| H A D | IssuingDistributionPoint.php | 37 'default' => false, 44 'default' => false, 56 'default' => false, 63 'default' => false,
|
| /dokuwiki/lib/plugins/config/core/Setting/ |
| H A D | SettingMulticheckbox.php | 23 $value = is_null($this->local) ? $this->default : $this->local; 48 $value = is_null($this->local) ? $this->default : $this->local; 55 $default = $this->str2array($this->default); 60 $idx_default = array_search($choice, $default); 64 // @todo ideally this would be handled using a second class of "default" 77 if ($idx_default !== false) unset($default[$idx_default]); 84 // use != 'exists' rather than == 'always' to ensure invalid values default to 'always' 87 (count($default) === count($value)) && 88 (count($value) === count(array_intersect($value, $default)))
|
| H A D | Setting.php | 15 /** @var mixed the default value of this setting */ 16 protected $default; variable in dokuwiki\\plugin\\config\\core\\Setting\\Setting 58 * @param mixed $default default setting value 62 public function initialize($default = null, $local = null, $protected = null) argument 64 $this->default = $this->cleanValue($default); 83 $value = is_null($this->local) ? $this->default : $this->local; 103 * Default implementation returns $value as is. Subclasses can override. 117 * Should this type of config have a default? 207 $value = is_null($this->local) ? $this->default : $this->local; 229 if ($this->default == $this->local) return false; [all …]
|
| H A D | SettingCompression.php | 13 public function initialize($default = null, $local = null, $protected = null) argument 20 parent::initialize($default, $local, $protected);
|
| /dokuwiki/lib/plugins/testing/conf/ |
| H A D | default.php | 4 * Default options 10 $conf['second'] = 'Default value';
|
| /dokuwiki/_test/conf/ |
| H A D | plugins.local.php | 6 …* NOTE: Plugins will not be added to this file unless there is a need to override a default settin… 7 * enabled by default.
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/ |
| H A D | DefaultEngine.php | 4 * BCMath Default Modular Exponentiation Engine 19 * PHP Default Modular Exponentiation Engine
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/ |
| H A D | DefaultEngine.php | 4 * PHP Default Modular Exponentiation Engine 19 * PHP Default Modular Exponentiation Engine
|