Home
last modified time | relevance | path

Searched refs:obj (Results 1 – 9 of 9) sorted by last modified time

/dokuwiki/inc/
H A Dparserutils.php229 $Parser->addMode($mode['mode'], $mode['obj']);
551 * @return array[] with for each plugin the array('sort' => sortnumber, 'mode' => mode string, 'obj' => plugin object)
577 /** @var SyntaxPlugin $obj */
578 $obj = plugin_load('syntax', $p);
579 if (!$obj instanceof PluginInterface) continue;
580 $PARSER_MODES[$obj->getType()][] = "plugin_$p"; //register mode type
583 'sort' => $obj->getSort(),
585 'obj' => $obj,
587 unset($obj); //remov
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php4958 $obj = self::encryption_algorithm_to_crypt_instance($algo);
4959 if ($obj instanceof Rijndael) {
4960 $obj->setKeyLength(preg_replace('#[^\d]#', '', $algo));
4975 $obj->setNonce('dummydummydu');
4977 if ($obj->isValidEngine($engine)) {
/dokuwiki/lib/plugins/usermanager/lang/pl/
H A Dimport.txt
/dokuwiki/lib/scripts/
H A Dtextselection.js15 this.obj = null;
24 return (!this.obj) ? '' : this.obj.value.substring(this.start,this.end);
40 sel.obj = textArea;
58 selection.obj.setSelectionRange(selection.start, selection.end);
59 if(selection.scroll) selection.obj.scrollTop = selection.scroll;
77 selection.obj.value =
78 selection.obj.value.substring(0, selection.start) + text +
79 selection.obj.value.substring(selection.end, selection.obj
[all...]
H A Dfileuploader.js17 * Adds all missing properties from second obj to first obj
197 qq.obj2url = function(obj, temp, prefixDone){ argument
220 uristrings.push(qq.obj2url(obj));
221 } else if ((Object.prototype.toString.call(obj) === '[object Array]') && (typeof obj != 'undefined') ) {
223 for (var i = 0, len = obj.length; i < len; ++i){
224 add(obj[i], i);
226 } else if ((typeof obj != 'undefined') && (obj !
[all...]
/dokuwiki/inc/Ui/
H A DAdmin.php133 /** @var AdminPlugin $obj */
134 if (!($obj = plugin_load('admin', $p)) instanceof PluginInterface) continue;
137 if (!$obj->isAccessibleByCurrentUser()) continue;
149 'prompt' => $obj->getMenuText($conf['lang']),
150 'icon' => $obj->getMenuIcon(),
151 'sort' => $obj->getMenuSort()
/dokuwiki/lib/plugins/config/core/
H A DConfiguration.php110 foreach ($this->settings as $key => $obj) {
112 if ($obj->update($value)) {
115 if ($obj->hasError()) $ok = false;
170 $obj = $this->instantiateClass($key);
172 if ($obj->shouldHaveDefault() && !isset($this->default[$key])) {
180 $obj->initialize($d, $l, $p);
197 $obj = new $class($key, $param);
198 $this->settings[$key] = $obj;
200 $obj = new SettingUndefined($key);
201 $this->undefined[$key] = $obj;
[all...]
/dokuwiki/inc/Extension/
H A DEventHandler.php45 * @param object $obj scope for the method be executed on, NULL for global function or callable
50 public function register_hook($event, $advise, $obj, $method, $param = null, $seq = 0) argument
54 $this->hooks[$event . '_' . $advise][$seq][] = [$obj, $method, $param];
75 [$obj, $method, $param] = $hook;
77 if ($obj === null) {
80 $obj->$method($event, $param);
H A DPluginTrait.php73 $obj = plugin_load('helper', $name);
74 if (is_null($obj) && $msg) msg("Helper plugin $name is not available or invalid.", -1);
75 return $obj;