Home
last modified time | relevance | path

Searched refs:page_idx (Results 1 – 2 of 2) sorted by relevance

/plugin/tagfilter/
H A Dscript.js62 var page_idx = 0;
66 pages[page_idx] = new Array();
68 pages[page_idx] = jQuery.merge(pages[page_idx],tags[index][tag]);
70 pages[page_idx] = jQuery.unique(pages[page_idx]);
71 page_idx++;
77 page_idx = 0;
81 pages[page_idx] = pages[page_idx]
[all...]
/plugin/autolink2/
H A Dhelper.php16 var $page_idx = array(); // array of existing pages variable in helper_plugin_autolink2
28 $this->page_idx = @file($this->idx_dir.'/page.idx');
32 $this->page_idx = @file($this->idx_dir.'/page.idx');
135 $pid = array_search("$id\n", $this->page_idx);
137 $this->page_idx[] = "$id\n";
138 $pid = count($this->page_idx) - 1;
183 $pid = array_search("$id\n", $this->page_idx);
234 fwrite($fh, join('', $this->page_idx));
271 $docs[$page] = trim($this->page_idx[$num]);
275 return trim($this->page_idx[$nums]);
[all …]