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 relevance

12345678910>>...16

/dokuwiki/vendor/simplepie/simplepie/src/Cache/
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 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/Extension/
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 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 DRemotePlugin.php43 $declaredin = $method->getDeclaringClass()->name;
47 $method_name = $method->name;
/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/inc/Remote/
H A DApi.php24 * 'name' => 'method name in class',
32 * core methods begin by a 'dokuwiki' or 'wiki' followed by a . and the method name itself.
35 * plugin methods are formed like 'plugin.<plugin name>.<method name>'.
116 * @param string $method name of the method to call.
112 coreMethodExist($name) global() argument
/dokuwiki/vendor/simplepie/simplepie/src/
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/
H A Dpluginutils.php46 * @param $name string name of the plugin to load
51 function plugin_load($type, $name, $new = false, $disabled = false)
55 return $plugin_controller->load($type, $name, $new, $disabled);
61 * @param string $plugin name of plugin
74 * @param string $plugin name of plugin
87 * @param string $plugin name of plugin
98 * Returns directory name of plugin
100 * @param string $plugin name of plugin
101 * @return string name o
50 plugin_load($type, $name, $new = false, $disabled = false) global() argument
[all...]
H A DMailer.class.php80 * @param string $name The filename to use
83 public function attachFile($path, $mime, $name = '', $embed = '')
85 if (!$name) {
86 $name = PhpString::basename($path);
92 'name' => $name,
102 * @param string $name The filename to use
105 public function attachContent($data, $mime, $name = '', $embed = '')
107 if (!$name) {
109 $name
78 attachFile($path, $mime, $name = '', $embed = '') global() argument
99 attachContent($data, $mime, $name = '', $embed = '') global() argument
331 getCleanName($name) global() argument
[all...]
/dokuwiki/inc/Form/
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 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/Action/
H A DAbstractAction.php17 /** @var string holds the name of the action (lowercase class name, no namespace) */
23 * @param string $actionname the name of this action (see getActionName() for caveats)
82 * Returns the name of this action
84 * This is usually the lowercased class name, but may differ for some actions.
/dokuwiki/lib/scripts/
H A Dfileuploaderextended.js58 // name suggestion (simplified cleanID)
86 ' <label class="qq-overwrite-check"><input type="checkbox" value="1" name="ow" class="dw__ow"> <span>' + LANG.media_overwrt + '</span></label>' +
93 ' <input class="qq-upload-name-input edit" type="text" value="" />' +
106 nameInput: 'qq-upload-name-input',
151 jQuery(".qq-upload-name-input").each(function (i) {
190 button += '<input type="hidden" value="' + result.ns + '" name="ns">';
191 button += '<input type="hidden" value="1" name="recent">';
206 var name = document.getElementById('mediamanager__upload_item'+id);
207 if (name != null) {
208 return name
[all...]
H A Dcookie.js5 * simple name-value pairs - no complex types!
14 name: 'DOKU_PREFS', property in DokuCookie
39 jQuery.cookie(this.name, text.join('#'), {expires: 365, path: DOKU_COOKIE_PARAM.path, secure: DOKU_COOKIE_PARAM.secure});
63 text = jQuery.cookie(this.name);
H A Dlocktimer.js12 'input[name=prefix]',
13 'textarea[name=wikitext]',
14 'input[name=suffix]',
15 'input[name=date]',
41 dw_locktimer.pageid = jQuery('#dw__editform').find('input[name=id]').val();
113 if(dw_locktimer.draft && jQuery('#dw__editform').find('textarea[name=wikitext]').length > 0){
/dokuwiki/vendor/composer/
H A Dinstalled.json4 "name": "aziraphale/email-address-validator", string
35 "name": "Dave Child", string
39 "name": "Andrew Gillard", string
48 "name": "geshi/geshi", string
81 "name": "Benny Baumann", string
98 "name": "kissifrot/php-ixr", string
134 "name": "Incutio Ltd 2010 - Simon Willison",
153 "name": "openpsa/universalfeedcreator",
190 "name": "Andreas Flack",
211 "name"
129 "name": "Incutio Ltd 2010 - Simon Willison", global() string
148 "name": "marcusschwarz/lesserphp", global() string
186 "name": "Leaf Corcoran", global() string
191 "name": "Marcus Schwarz", global() string
205 "name": "openpsa/universalfeedcreator", global() string
242 "name": "Andreas Flack", global() string
263 "name": "phpseclib/phpseclib", global() string
309 "name": "Jim Wigginton", global() string
314 "name": "Patrick Monnerat", global() string
319 "name": "Andreas Fischer", global() string
324 "name": "Hans-Jürgen Petrich", global() string
329 "name": "Graham Campbell", global() string
376 "name": "simplepie/simplepie", global() string
425 "name": "Ryan Parman", global() string
430 "name": "Sam Sneddon", global() string
435 "name": "Ryan McCue", global() string
455 "name": "splitbrain/php-archive", global() string
498 "name": "Andreas Gohr", global() string
518 "name": "splitbrain/php-cli", global() string
555 "name": "Andreas Gohr", global() string
576 "name": "splitbrain/php-jsstrip", global() string
611 "name": "Andreas Gohr", global() string
629 "name": "splitbrain/slika", global() string
664 "name": "Andreas Gohr", global() string
[all...]
/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/lib/plugins/usermanager/
H A Dadmin.php124 // submit button name is of the form - fn[cmd][param(s)]
249 self::IMAGE_DIR . 'search.png" name="fn[search][new]" title="' .
251 echo '<td><input type="text" name="userid" class="edit" value="' . $this->htmlFilter('user') . '" /></td>';
252 echo '<td><input type="text" name="username" class="edit" value="' . $this->htmlFilter('name') . '" /></td>';
253 echo '<td><input type="text" name="usermail" class="edit" value="' . $this->htmlFilter('mail') . '" /></td>';
254 echo '<td><input type="text" name="usergroups" class="edit" value="' . $this->htmlFilter('grps') . '" /></td>';
263 * @var string $name
270 echo '<td class="centeralign"><input type="checkbox" name="delete[' . hsc($user) .
281 echo '<td>' . hsc($name)
512 htmlInputField($id, $name, $label, $value, $cando, $required, $indent = 0) global() argument
[all...]
H A Dcli.php34 $options->registerArgument('name', 'Full name', false, 'add');
41 $options->registerArgument('name', 'Username(s), comma-seperated', true, 'delete');
45 $options->registerArgument('name', 'Username', true, 'addtogroup');
50 $options->registerArgument('name', 'Username', true, 'removefromgroup');
127 $content[] = $user['name'];
155 [$login, $mail, $name, $grps, $pass] = $args;
174 if ($auth->triggerUserMod('create', [$login, $pass, $name, $mail, $grps])) {
226 [$name, $newgrps] = $args;
228 $oldinfo = $auth->getUserData($name);
[all...]
/dokuwiki/inc/parser/
H A Drenderer.php116 * @param string $name Plugin name
121 public function plugin($name, $data, $state = '', $match = '')
124 $plugin = plugin_load('syntax', $name);
570 * @param string $link The link name
581 * @param string $name name for the link
583 public function locallink($hash, $name = null)
591 * @param string|array $title name for the link, array for media file argument
601 * @param string|array $title name fo
115 plugin($name, $data, $state = '', $match = '') global() argument
522 locallink($hash, $name = null) global() argument
780 _simpleTitle($name) global() argument
[all...]
/dokuwiki/lib/plugins/styling/
H A Dadmin.php87 $name = tpl_getLang($key);
88 if (empty($name)) $name = $this->getLang($key);
89 if (empty($name)) $name = $key;
92 echo '<td><label for="tpl__' . hsc($key) . '">' . $name . '</label></td>';
93 echo '<td><input type="' . $this->colorType($value) . '" name="tpl[' . hsc($key) . ']" ' .
101 echo '<button type="submit" name="run[preview]" class="btn_preview primary">' .
104 echo '<button type="submit" name="run[reset]">' . $this->getLang('btn_reset') . '</button>';
108 echo '<button type="submit" name
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/DataType/
H A DValue.php89 foreach ($this->data as $name => $value) {
90 $name = htmlspecialchars($name);
91 $return .= " <member><name>$name</name><value>";
/dokuwiki/lib/plugins/acl/
H A Dscript.js32 current_ns: $frm.find('input[name=ns]').val(),
33 current_id: $frm.find('input[name=id]').val()}),
109 $frm.find('input[name=ns]').val('');
110 $frm.find('input[name=id]').val(dw_acl.parseatt($link[0].search).id);
112 $frm.find('input[name=ns]').val(dw_acl.parseatt($link[0].search).ns);
113 $frm.find('input[name=id]').val('');

12345678910>>...16