Home
last modified time | relevance | path

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

12345678910

/dokuwiki/bin/
H A Ddwpage.php127 'Prints metadata value for a page to stdout.'
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt452 The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki:DokuWiki]] will generally try to supply a cached version of a page, obviously this is inappropriate when the page contains dynamic external content. The parameter tells [[wiki:DokuWiki]] to re-render the page if it is more than //refresh period// since the page was last rendered.
/dokuwiki/inc/Cache/
H A DCache.php98 * purge - force a purge on any non empty value
143 * it should only overwrite a dependency when the new value is more stringent than the old
192 * @return bool pass-thru $success value
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php83 * The value of identifier can be determined by timestamp as far as the file exists,
98 * Return the last revision identifier, date value of the last entry of the changelog
111 * @param string $value changelog line
114 protected function parseAndCacheLogLine($value)
116 $info = static::parseLogLine($value);
475 * when it does not match any revision value recorded in changelog.
581 * As a result, the value of current revision identifier may change each time because:
583 * 2) the value is essentially volatile for deleted but once existed files.
H A DRevisionInfo.php55 * set value of associated "current" key for internal use. Some UI element like diff
59 * @param bool $value true if the revision is current, otherwise false
62 public function isCurrent($value = null)
64 return (bool) $this->val('current', $value);
68 * Return or set a value of associated key of revision information
72 * @param mixed $value
75 public function val($key, $value = null)
77 if (isset($value) && !array_key_exists($key, $this->info)) {
79 $this->info[$key] = $value;
89 * Set extra key-value t
60 isCurrent($value = null) global() argument
73 val($key, $value = null) global() argument
[all...]
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php78 public function __set($name, $value)
83 $this->$name = $value;
93 $this->$name = $value;
113 // defined by the current class, for some value of "current" that differs slightly
79 __set($name, $value) global() argument
/dokuwiki/inc/Extension/
H A DAuthPlugin.php290 * @param array $changes array of field/value pairs to be changed (password will be clear text)
H A DEvent.php115 * the value set by any <event>_before or <event> handlers if the default action is prevented
117 * or NULL no action took place and no handler modified the value
193 * @return mixed the event results value after all event processing is complete
194 * by default this is the return value of the default action however
H A DPluginController.php144 * @deprecated in favor of the more sensible isEnabled where the return value matches the enabled state
266 foreach ($local_plugins as $plugin => $value) {
267 $out .= "\$plugins['$plugin'] = $value;\n";
388 * Returns inverse boolean value of the input
391 * @return bool inversed boolean value of input
H A DPluginTrait.php209 foreach ($defaults as $key => $value) {
211 $conf['plugin'][$plugin][$key] = $value;
222 * @return array setting => value
H A DSyntaxPlugin.php67 * This function can only pass data to render() via its return value - render()
101 * @return boolean rendered correctly? (however, returned value is not used at the moment)
/dokuwiki/inc/Form/
H A DButtonElement.php23 parent::__construct('button', ['name' => $name, 'value' => 1]);
H A DCheckableElement.php22 // default value is 1
23 $this->attr('value', 1);
38 // no key - single value
39 $value = $INPUT->str($name);
40 if ($value == $myvalue) {
56 foreach ($input as $value) {
57 if ($value == $myvalue) {
H A DDropdownElement.php55 * * the value being an array of options as defined in @param null|array $optGroups
78 * Options can be given as associative array (value => label) or as an
79 * indexd array (label = value) or as an array of arrays. In the latter
81 * option-value => array (
84 * attr-key => attr-value, ...
101 * Get or set the current value
103 * When setting a value that is not defined in the options, the value is ignored
104 * and the first option's value is selected instead
106 * @param null|string|string[] $value Th
109 val($value = null) global() argument
[all...]
H A DElement.php47 * When no $value is given, the current content of the attribute is returned.
50 * When a $value is given, the content is set to that value and the Element
54 * @param null|string $value New value to set
57 public function attr($name, $value = null) argument
60 if ($value !== null) {
61 $this->attributes[$name] = $value;
142 * Get or set the element's value
144 * This is the preferred way of setting the element's value
149 val($value = null) global() argument
[all...]
H A DFieldsetOpenElement.php21 // the parent would expect the tag in $value but we're storing the
H A DForm.php17 * @var array name value pairs for hidden values
69 * @param string $value
72 public function setHiddenField($name, $value) argument
74 $this->hidden[$name] = $value;
93 * Warning: This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates
95 * return value of this function.
144 * @param string $value Value the attribute should have
148 public function findPositionByAttribute($name, $value, $offset = 0) argument
152 if ($this->elements[$pos]->attr($name) == $value) {
[all...]
H A DInputElement.php91 * Figures out how to access the value for this field from INPUT data
98 * correct value yourself
121 * Handles the useInput flag and set the value attribute accordingly
131 $value = $INPUT->str($name);
133 $value = $INPUT->arr($name);
134 if (isset($value[$key])) {
135 $value = $value[$key];
137 $value = '';
140 $this->val($value);
[all...]
H A DOptGroup.php32 foreach ($values as $value) {
33 if (isset($this->options[$value])) {
34 $this->values[] = $value;
44 * Options can be given as associative array (value => label) or as an
45 * indexd array (label = value) or as an array of arrays. In the latter
47 * option-value => array (
50 * attr-key => attr-value, ...
116 $html .= '<option' . $selected . ' value="' . hsc($key) . '" ' . $attrs . '>';
H A DTagCloseElement.php56 * @param null|string $value
60 public function attr($name, $value = null) argument
62 if ($value === null) {
H A DTextareaElement.php27 * Get or set the element's value
29 * This is the preferred way of setting the element's value
31 * @param null|string $value
34 public function val($value = null) argument
36 if ($value !== null) {
37 $this->text = cleanText($value);
H A DValueElement.php8 * Just like an Element but it's value is not part of its attributes
10 * What the value is (tag name, content, etc) is defined by the actual implementations
17 * @var string holds the element's value
19 protected $value = ''; variable in dokuwiki\\Form\\ValueElement
23 * @param string $value
26 public function __construct($type, $value, $attributes = []) argument
29 $this->val($value);
33 * Get or set the element's value
35 * @param null|string $value
38 public function val($value argument
[all...]
/dokuwiki/inc/HTTP/
H A DHTTPClient.php810 foreach ($headers as $key => $value) {
811 if ($value === '') continue;
812 $string .= $key . ': ' . $value . HTTP_NL;
H A DHeaders.php20 // if the value is not an array, we also accept newline terminated strings
/dokuwiki/inc/Input/
H A DGet.php22 * @param mixed $value Value to set
24 public function set($name, $value) argument
26 parent::set($name, $value);
27 $_REQUEST[$name] = $value;

12345678910