Home
last modified time | relevance | path

Searched refs:name (Results 1 – 25 of 143) sorted by relevance

123456

/dokuwiki/inc/Input/
H A DInput.php76 * @param string $name Parameter name
79 public function has($name)
81 return isset($this->access[$name]);
91 * @param string $name Parameter name
93 public function remove($name)
95 if (isset($this->access[$name])) {
96 unset($this->access[$name]);
99 if (isset($this->post) && isset($_POST[$name])) {
80 has($name) global() argument
94 remove($name) global() argument
116 param($name, $default = null, $nonempty = false) global() argument
130 set($name, $value) global() argument
146 ref($name, $default = '', $nonempty = false) global() argument
163 int($name, $default = 0, $nonempty = false) global() argument
182 str($name, $default = '', $nonempty = false) global() argument
204 valid($name, $valids, $default = null) global() argument
224 bool($name, $default = false, $nonempty = false) global() argument
243 arr($name, $default = array(), $nonempty = false) global() argument
267 extract($name) global() argument
[all...]
H A DGet.php21 * @param string $name Parameter name
24 public function set($name, $value) argument
26 parent::set($name, $value);
27 $_REQUEST[$name] = $value;
H A DPost.php21 * @param string $name Parameter name
24 public function set($name, $value)
26 parent::set($name, $value);
27 $_REQUEST[$name] = $value;
25 set($name, $value) global() argument
/dokuwiki/inc/
H A Dload.php127 * @param string $classPath The class name using forward slashes as namespace separators
145 * @param string $classPath The class name using forward slashes as namespace separators
163 * @param string $classPath The class name using forward slashes as namespace separators
192 * @param string $classPath The class name using forward slashes as namespace separators
218 * @param string $classPath The class name using forward slashes as namespace separators
54 load_autoload($name) global() argument
H A Dform.php18 * Every pseudo-tag must have the key '_elem' set to the name of the element.
125 * Adds a name/value pair as a hidden field.
126 * The value of the field (but not the name) will be passed to
129 * @param string $name Field name.
134 public function addHidden($name, $value)
137 unset($this->_hidden[$name]);
138 else $this->_hidden[$name] = $value;
232 * @param string $name Attribute name
133 addHidden($name, $value) global() argument
238 findElementByAttribute($name, $value) global() argument
325 addRadioSet($name, $entries) global() argument
450 form_makeField($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
476 form_makeFieldRight($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
500 form_makeTextField($name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
524 form_makePasswordField($name, $label = null, $id = '', $class = '', $attrs = array()) global() argument
547 form_makeFileField($name, $label = null, $id = '', $class = '', $attrs = array()) global() argument
573 form_makeCheckboxField($name, $value = '1', $label = null, $id = '', $class = '', $attrs = array()) global() argument
598 form_makeRadioField($name, $value = '1', $label = null, $id = '', $class = '', $attrs = array()) global() argument
630 form_makeMenuField($name, $values, $selected = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
676 form_makeListboxField($name, $values, $selected = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DFile.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
84 protected $name; variable in SimplePie\\Cache\\File
90 * @param string $name Unique ID for the cache
93 public function __construct($location, $name, $type) argument
96 $this->filename = $name;
98 $this->name = "$this->location/$this->filename.$this->extension";
109 if (file_exists($this->name) && is_writable($this->name) || file_exists($this->location) && is_writable($this->location)) {
115 return (bool) file_put_contents($this->name, $data);
127 if (file_exists($this->name)
[all...]
H A DMemcache.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
81 * Cache name
85 protected $name; variable in SimplePie\\Cache\\Memcache
91 * @param string $name Unique ID for the cache
94 public function __construct($location, $name, $type) argument
106 $this->name = $this->options['extras']['prefix'] . md5("$name:$type");
123 return $this->cache->set($this->name, serialize($data), MEMCACHE_COMPRESSED, (int) $this->options['extras']['timeout']);
133 $data = $this->cache->get($this->name);
148 $data = $this->cache->get($this->name);
[all...]
H A DMemcached.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
80 * Cache name
83 protected $name; variable in SimplePie\\Cache\\Memcached
88 * @param string $name Unique ID for the cache
91 public function __construct($location, $name, $type) argument
103 $this->name = $this->options['extras']['prefix'] . md5("$name:$type");
129 $data = $this->cache->get($this->name);
143 $data = $this->cache->get($this->name . '_mtime');
153 $data = $this->cache->get($this->name);
[all...]
H A DRedis.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
81 * Cache name
85 protected $name; variable in SimplePie\\Cache\\Redis
91 * @param string $name Unique ID for the cache
94 public function __construct($location, $name, $options = null) argument
117 $this->name = $this->options['prefix'] . $name;
139 $response = $this->cache->set($this->name, serialize($data));
141 $this->cache->expire($this->name, $this->options['expire']);
154 $data = $this->cache->get($this->name);
[all...]
H A DCallableNameFilter.php21 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
67 * The returning name MUST follow the rules for keys in PSR-16.
71 * The returning name MUST be a string of at least one character
81 * @param string $name The name for the cache will be most likly an url with query string
83 * @return string the new cache name
85 public function filter(string $name): string argument
87 return call_user_func($this->callable, $name);
H A DNameFilter.php21 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
57 * The returning name MUST follow the rules for keys in PSR-16.
61 * The returning name MUST be a string of at least one character
71 * @param string $name The name for the cache will be most likly an url with query string
73 * @return string the new cache name
75 public function filter(string $name): string; argument
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php36 * List of deprecated properties, in <property name> => <class> format
37 * where <class> is the the name of the class defining the property
48 * @param string $property The name of the property.
49 * @param null $class name of the class defining the property
59 public function __get($name)
61 if (isset($this->deprecatedPublicProperties[$name])) {
62 $class = $this->deprecatedPublicProperties[$name];
63 DebugHelper::dbgDeprecatedProperty($class, $name);
64 return $this->$name;
67 $qualifiedName = get_class() . '::$' . $name;
60 __get($name) global() argument
79 __set($name, $value) global() argument
[all...]
/dokuwiki/inc/Form/
H A DInputElement.php28 * @param string $name The name of this form element
31 public function __construct($type, $name, $label = '') argument
33 parent::__construct($type, ['name' => $name]);
34 $this->attr('name', $name);
93 * The element's name could have been given as a simple string ('foo')
100 * @return array name and array key (null if not an array)
104 $name
[all...]
H A DElement.php53 * @param string $name Name of the attribute to access
57 public function attr($name, $value = null) argument
61 $this->attributes[$name] = $value;
66 if (isset($this->attributes[$name])) {
67 return $this->attributes[$name];
76 * @param string $name
79 public function rmattr($name) argument
81 if (isset($this->attributes[$name])) {
82 unset($this->attributes[$name]);
H A DCheckableElement.php16 * @param string $name The name of this form element
19 public function __construct($type, $name, $label) argument
21 parent::__construct($type, $name, $label);
32 [$name, $key] = $this->getInputName();
35 if (!$INPUT->has($name)) return;
39 $value = $INPUT->str($name);
47 $input = $INPUT->arr($name);
H A DForm.php17 * @var array name value pairs for hidden values
68 * @param string $name
72 public function setHiddenField($name, $value) argument
74 $this->hidden[$name] = $value;
143 * @param string $name Name of the attribute
148 public function findPositionByAttribute($name, $value, $offset = 0) argument
152 if ($this->elements[$pos]->attr($name) == $value) {
214 * @param string $name
219 public function addTextInput($name, $label = '', $pos = -1) argument
221 return $this->addElement(new InputElement('text', $name,
232 addPasswordInput($name, $label = '', $pos = 1) global() argument
245 addRadioButton($name, $label = '', $pos = 1) global() argument
258 addCheckbox($name, $label = '', $pos = 1) global() argument
272 addDropdown($name, $options, $label = '', $pos = 1) global() argument
285 addTextarea($name, $label = '', $pos = 1) global() argument
298 addButton($name, $content, $pos = 1) global() argument
311 addButtonHTML($name, $html, $pos = 1) global() argument
[all...]
H A DButtonElement.php18 * @param string $name
21 public function __construct($name, $content = '') argument
23 parent::__construct('button', ['name' => $name, 'value' => 1]);
/dokuwiki/inc/parser/
H A Dparser.php64 public function __set($name, $value)
67 if ($name === 'Handler') {
72 if ($name === 'Lexer') {
77 $this->deprecationHelperMagicSet($name, $value);
80 public function __get($name)
82 if ($name === 'Handler') {
86 if ($name === 'Lexer') {
90 return $this->deprecationHelperMagicGet($name);
71 __set($name, $value) global() argument
87 __get($name) global() argument
H A Dmetadata.php436 * @param string $link The link name
448 * @param string $name name for the link
450 public function locallink($hash, $name = null)
452 if (is_array($name)) {
453 $this->_firstimage($name['src']);
454 if ($name['type'] == 'internalmedia') {
455 $this->_recordMediaUsage($name['src']);
464 * @param string|array|null $name name fo
445 locallink($hash, $name = null) global() argument
461 internallink($id, $name = null) global() argument
502 externallink($url, $name = null) global() argument
526 interwikilink($match, $name, $wikiName, $wikiUri) global() argument
548 windowssharelink($url, $name = null) global() argument
574 emaillink($address, $name = null) global() argument
661 _simpleTitle($name) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DAuthor.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
61 * Author's name
66 public $name; variable in SimplePie\\Author
87 * @param string $name
91 public function __construct($name = null, $link = null, $email = null) argument
93 $this->name = $name;
110 * Author's name
116 if ($this->name !== null) {
117 return $this->name;
[all...]
H A DCredit.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
77 * Credited name
82 public $name; variable in SimplePie\\Credit
90 public function __construct($role = null, $scheme = null, $name = null) argument
94 $this->name = $name;
137 * Get the credited person/entity's name
143 if ($this->name !== null) {
144 return $this->name;
/dokuwiki/inc/Extension/
H A DEvent.php14 /** @var string READONLY event name, objects must register against this name to see the event */ variable in dokuwiki\\Extension\\Event
15 public $name = '';
35 * @param string $name
38 public function __construct($name, &$data)
41 $this->name = $name;
50 return $this->name;
59 * $evt = new dokuwiki\Plugin\Doku_Event(name, data);
78 ->log($this->name
37 __construct($name, & $data) global() argument
196 createAndTrigger($name, & $data, $action = null, $canPreventDefault = true) global() argument
[all...]
H A DPluginInterface.php21 * base - the plugin's base name (eg. the directory it needs to be installed in)
25 * name - Name of the plugin
32 * The type of the plugin inferred from the class name
39 * The name of the plugin inferred from the class name
41 * @return string plugin name
46 * The component part of the plugin inferred from the class name
48 * @return string component name
112 * @param string $name name o
116 loadHelper($name, $msg = true) global() argument
128 email($email, $name = '', $class = '', $more = '') global() argument
[all...]
/dokuwiki/lib/plugins/extension/helper/
H A Drepository.php36 foreach ($list as $name) {
37 $cache = new Cache('##extension_manager##' . $name, '.repo');
40 !isset($this->loaded_extensions[$name]) &&
44 $this->loaded_extensions[$name] = true;
45 $request_data['ext'][] = $name;
107 * @param string $name The plugin name to get the data for, template names need to be prefix by 'template:'
110 public function getData($name)
112 $cache = new Cache('##extension_manager##' . $name, '.repo');
115 !isset($this->loaded_extensions[$name])
98 getData($name) global() argument
[all...]
/dokuwiki/conf/
H A Dlicense.php11 'name' => 'CC0 1.0 Universal',
15 'name' => 'Public Domain',
19 'name' => 'CC Attribution 4.0 International',
23 'name' => 'CC Attribution-Share Alike 4.0 International',
27 'name' => 'GNU Free Documentation License 1.3',
31 'name' => 'CC Attribution-Noncommercial 4.0 International',
35 'name' => 'CC Attribution-Noncommercial-Share Alike 4.0 International',

123456