Searched refs:obj (Results 1 – 10 of 10) sorted by relevance
/dokuwiki/lib/scripts/ |
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);
|
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));
|
/dokuwiki/_test/core/ |
H A D | DokuWikiTest.php | 222 * @param object $obj Object in which to call the method 228 protected static function callInaccessibleMethod($obj, $func, array $args) { argument 229 $class = new \ReflectionClass($obj); 232 return $method->invokeArgs($obj, $args); 241 * @param object $obj Object on which to access the property 246 protected static function getInaccessibleProperty($obj, $prop) { argument 247 $class = new \ReflectionClass($obj); 250 return $property->getValue($obj); 259 * @param object $obj Object on which to access the property 265 protected static function setInaccessibleProperty($obj, $prop, $value) { argument [all …]
|
H A D | phpQuery-onefile.php | 5361 public static function makeArray($obj) { argument
|
/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][] = [$obj, $method, $param]; 75 [$obj, $method, $param] = $hook; 77 if ($obj === null) { 80 $obj->$method($event, $param);
|
/dokuwiki/lib/plugins/config/core/ |
H A D | Configuration.php | 110 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/Ui/ |
H A D | Admin.php | 136 if (!($obj = plugin_load('admin', $p)) instanceof PluginInterface) continue; 139 if (!$obj->isAccessibleByCurrentUser()) continue; 140 if (!$obj->showInMenu()) continue; 152 'prompt' => $obj->getMenuText($conf['lang']), 153 'icon' => $obj->getMenuIcon(), 154 'sort' => $obj->getMenuSort()
|
/dokuwiki/inc/ |
H A D | parserutils.php | 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); //remove the reference 603 $obj = new $class(); 604 $modes[] = ['sort' => $obj->getSort(), 'mode' => $m, 'obj' => $obj]; 612 $obj = new Formatting($m); 614 'sort' => $obj->getSort(), [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/vendor/phpseclib/phpseclib/phpseclib/Net/ |
H A D | SSH2.php | 5043 $obj = self::encryption_algorithm_to_crypt_instance($algo); 5044 if ($obj instanceof Rijndael) { 5045 $obj->setKeyLength(preg_replace('#[^\d]#', '', $algo)); 5080 $obj->setNonce('dummydummydu'); 5082 if ($obj->isValidEngine($engine)) {
|