Home
last modified time | relevance | path

Searched +full:name -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 26 – 50 of 391) sorted by path

12345678910>>...16

/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/
H A DDifferenceEngine.php655 * FIXME: bad name.
/dokuwiki/inc/Extension/
H A DAdminPlugin.php17 * (Default localized language string 'menu' is returned, override this function for setting another name)
27 $menutext = $info['name'] . ' ...';
H A DAuthPlugin.php115 * example for enforcing a user name schema.
206 $USERINFO['name'] = 'FIXME';
227 * @param string $user the user name
243 * name string full name of the user
248 * @param string $user the user name
272 * @param string $name
277 public function createUser($user, $pass, $name, $mail, $grps = null)
394 * This function is applied to any user name that is given to
395 * the backend and should also be applied to any user name withi
279 createUser($user, $pass, $name, $mail, $grps = null) global() argument
[all...]
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 DEventHandler.php43 * @param string $event name used by the event
70 $evt_name = $event->name . ($advise ? '_' . $advise : '_BEFORE');
95 * @param string $name Name of the event
99 public function hasHandlerForEvent($name, $advise = '') argument
102 return isset($this->hooks[$name . '_' . $advise]);
105 return isset($this->hooks[$name . '_BEFORE']) || isset($this->hooks[$name . '_AFTER']);
H A DPluginController.php37 * @param $type string, plugin_type name;
74 * @param $name string name of the plugin to load
81 public function load($type, $name, $new = false, $disabled = false)
87 [$plugin, /* component */ ] = $this->splitName($name);
94 $class = $type . '_plugin_' . $name;
98 if (!empty($DOKU_PLUGINS[$type][$name])) {
99 if ($new || !$DOKU_PLUGINS[$type][$name]->isSingleton()) {
103 return $DOKU_PLUGINS[$type][$name];
123 'Plugin name \'
80 load($type, $name, $new = false, $disabled = false) global() argument
383 splitName($name) 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 nam
116 loadHelper($name, $msg = true) global() argument
128 email($email, $name = '', $class = '', $more = '') global() argument
[all...]
H A DPluginTrait.php38 'name' => $ext . ' plugin',
71 public function loadHelper($name, $msg = true)
73 $obj = plugin_load('helper', $name);
74 if (is_null($obj) && $msg) msg("Helper plugin $name is not available or invalid.", -1);
243 public function email($email, $name = '', $class = '', $more = '')
245 if (!$email) return $name;
247 if (!$name) $name = $email;
249 return "<a href='mailto:$email' $class title='$email' $more>$name</a>";
47 loadHelper($name, $msg = true) global() argument
219 email($email, $name = '', $class = '', $more = '') global() argument
H A DRemotePlugin.php43 $declaredin = $method->getDeclaringClass()->name;
47 $method_name = $method->name;
/dokuwiki/inc/File/
H A DPageFile.php310 $meta['creator'] = $INFO['userinfo']['name'] ?? null;
319 $meta['contributor'][$user] = $INFO['userinfo']['name'] ?? null;
324 $meta['contributor'][$user] = $INFO['userinfo']['name'] ?? null;
/dokuwiki/inc/Form/
H A DButtonElement.php18 * @param string $name
21 public function __construct($name, $content = '') argument
23 parent::__construct('button', ['name' => $name, 'value' => 1]);
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 DDropdownElement.php21 * @param string $name The name of this form element
25 public function __construct($name, $options, $label = '') argument
27 parent::__construct('dropdown', $name, $label);
183 $attr['name'] .= '[]';
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]);
[all...]
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, argument
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 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 DLegacyForm.php41 $this->addTextInput($ctl['name'], $ctl['text'])
47 $this->addPasswordInput($ctl['name'], $ctl['text'])
53 $this->addCheckbox($ctl['name'], $ctl['text'])
59 $this->addRadioButton($ctl['name'], $ctl['text'])
67 ->attr('name', $ctl['name'])
74 ->attr('name', $ctl['name'])
84 ->attr('name', $ctl['name'])
[all...]
H A DTagCloseElement.php55 * @param string $name
60 public function attr($name, $value = null) argument
H A DTextareaElement.php17 * @param string $name The name of this form element
20 public function __construct($name, $label) argument
22 parent::__construct('textarea', $name, $label);
H A DValueElement.php10 * What the value is (tag name, content, etc) is defined by the actual implementations
/dokuwiki/inc/HTTP/
H A DHTTPClient.php546 // set correct peer name for verification (enabled since PHP 5.6)
717 * Uses _debug_text or _debug_html depending on the SAPI name
864 $out .= 'Content-Disposition: form-data; name="' . urlencode($key) . '"' . HTTP_NL;
869 $out .= 'Content-Disposition: form-data; name="' . urlencode($key) . '"';
/dokuwiki/inc/Input/
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 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 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

12345678910>>...16