Home
last modified time | relevance | path

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

123456

/dokuwiki/
H A DCOPYING293 <one line to give the program's name and a brief idea of what it does.>
294 Copyright (C) <year> <name of author>
315 Gnomovision version 69, Copyright (C) year name of author
H A Dfeed.php
/dokuwiki/bin/
H A Dplugin.php75 foreach ($list as $name) {
76 $plugin = $this->loadPlugin($name);
82 ['', $name, $info['desc']],
92 * @param string $name
95 protected function loadPlugin($name)
97 [$basename] = explode('_', $name); // might be a sub component
101 $class = "cli_plugin_$name";
91 loadPlugin($name) global() argument
/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',
H A Dmysql.conf.php.example13 * gid name
62 * %{user} user name
64 * %{dgroup} default group name
71 AND name='%{dgroup}'";
76 * 'name' the user's full name
83 * %{user} user name
85 $conf['plugin']['authmysql']['getUserInfo'] = "SELECT pass, CONCAT(firstname,' ',lastname) AS name, email AS mail
91 * member of. The plugin accesses the group name as 'group' so an alias
95 * %{user} user name
[all...]
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt60 Linking to a specific section is possible, too. Just add the section name behind a hash character as known from HTML. This links to [[syntax#internal|this Section]].
406 [[wiki:DokuWiki]] can highlight sourcecode, which makes it easier to read. It uses the [[http://qbnz.com/highlighter/|GeSHi]] Generic Syntax Highlighter -- so any language supported by GeSHi is supported. The syntax uses the same code and file blocks described in the previous section, but this time the name of the language syntax to be highlighted is included inside the tag, e.g. ''<nowiki><code java></nowiki>'' or ''<nowiki><file java></nowiki>''.
426 When you use the ''%%<code>%%'' or ''%%<file>%%'' syntax as above, you might want to make the shown code available for download as well. You can do this by specifying a file name after language code like this:
/dokuwiki/inc/
H A DAjax.php22 * @param string $call name of the ajax call
67 $name = $title;
71 $name = noNS($id) . ' (' . $ns . ')';
73 $name = $id;
76 echo '<li>' . html_wikilink(':' . $id, $name) . '</li>';
276 $id = $INPUT->post->str('mediaid', $_FILES['qqfile']['name']);
434 $name = $lang['upperns'];
436 $name = hsc($item['id']);
439 echo '<a href="' . $link . '" title="' . hsc($item['id']) . '" class="wikilink1">' . $name . '</a>';
/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/Extension/
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 name o
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/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]);
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 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 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);
/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...]

123456