Home
last modified time | relevance | path

Searched refs:parents (Results 1 – 8 of 8) sorted by relevance

/dokuwiki/inc/TreeBuilder/
H A DControlPageBuilder.php55 $parents = [
69 if (isset($parents[$level])) {
70 unset($parents[$level]);
94 $parents[$level] = $newpage;
97 $parent = $parents[count($parents) - 2];
/dokuwiki/inc/TreeBuilder/Node/
H A DAbstractNode.php18 protected array $parents = []; variable in dokuwiki\\TreeBuilder\\Node\\AbstractNode
121 if (!$this->parents) {
124 $this->parents[] = $parent;
129 return $this->parents;
/dokuwiki/lib/plugins/extension/
H A Dscript.js53 const $section = $btn.parents('section');
66 sectok: $btn.parents('form').find('input[name=sectok]').val()
/dokuwiki/lib/scripts/
H A Dqsearch.js48 dw_qsearch.$inObj.parents('form').addClass('searching');
85 dw_qsearch.$inObj.parents('form').removeClass('searching');
100 dw_qsearch.$inObj.parents('form').removeClass('searching');
H A Dpage.js50 jQuery(this).parents('.section_highlight_wrapper').addClass('section_highlight');
56 jQuery(this).parents('.section_highlight_wrapper').removeClass('section_highlight');
/dokuwiki/lib/scripts/jquery/
H A Djquery-ui.min.js6parents("label"),(t=this.attr("id"))&&(i=(i=this.eq(0).parents().last()).add((i.length?i:this).sib…
H A Djquery.min.js2 …{parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){retur… method
/dokuwiki/_test/core/
H A DphpQuery-onefile.php3633 public function parents($selector = null) { function in phpQueryObject