Searched refs:obj (Results 1 – 9 of 9) sorted by path
/dokuwiki/inc/Extension/ |
H A D | EventHandler.php | 45 * @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][] = array($obj, $method, $param); 75 list($obj, $method, $param) = $hook; 77 if ($obj === null) { 80 $obj->$method($event, $param);
|
H A D | PluginTrait.php | 49 $obj = plugin_load('helper', $name); 50 if (is_null($obj) && $msg) msg("Helper plugin $name is not available or invalid.", -1); 51 return $obj;
|
/dokuwiki/inc/Ui/ |
H A D | Admin.php | 126 if(($obj = plugin_load('admin', $p)) === null) continue; 129 if (!$obj->isAccessibleByCurrentUser()) continue; 141 'prompt' => $obj->getMenuText($conf['lang']), 142 'icon' => $obj->getMenuIcon(), 143 'sort' => $obj->getMenuSort(),
|
/dokuwiki/inc/ |
H A D | parserutils.php | 589 'obj' => $obj, 607 $obj = new $class(); 609 'sort' => $obj->getSort(), 611 'obj' => $obj 620 $obj = new Formatting($m); 624 'obj' => $obj 630 $modes[] = ['sort' => $obj->getSort(), 'mode' => 'smiley', 'obj' => $obj]; 632 $modes[] = ['sort' => $obj->getSort(), 'mode' => 'acronym', 'obj' => $obj]; 634 $modes[] = ['sort' => $obj->getSort(), 'mode' => 'entity', 'obj' => $obj]; 638 $obj = new Camelcaselink(); [all …]
|
/dokuwiki/lib/plugins/config/core/ |
H A D | Configuration.php | 104 foreach($this->settings as $key => $obj) { 106 if($obj->update($value)) { 109 if($obj->hasError()) $ok = false; 160 $obj = $this->instantiateClass($key); 162 if($obj->shouldHaveDefault() && !isset($this->default[$key])) { 170 $obj->initialize($d, $l, $p); 186 $obj = new $class($key, $param); 187 $this->settings[$key] = $obj; 189 $obj = new SettingUndefined($key); 190 $this->undefined[$key] = $obj; [all …]
|
/dokuwiki/lib/plugins/usermanager/lang/pl/ |
H A D | import.txt | 4 Pola CSV powinny być oddzielone przecinkami (,) a łańcuchy znaków objęte znakami cudzysłowu (%%""%%…
|
/dokuwiki/lib/scripts/ |
H A D | fileuploader.js | 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 !== null) && (typeof obj === "object")){ 228 for (var i in obj){ 229 if(obj.hasOwnProperty(i) && typeof obj[i] != 'function') { 230 add(obj[i], i); 234 uristrings.push(encodeURIComponent(temp) + '=' + encodeURIComponent(obj));
|
H A D | textselection.js | 15 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.value.length);
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
H A D | SSH2.php | 4918 $obj = $this->_encryption_algorithm_to_crypt_instance($algo); 4919 if ($obj instanceof Rijndael) { 4920 $obj->setKeyLength(preg_replace('#[^\d]#', '', $algo)); 4929 if ($obj->isValidEngine($engine)) {
|