| /plugin/include/_test/ |
| H A D | namespace_includes.test.php | 50 $pages = array(); 54 $pages [] = $file; 58 return $pages; 69 $pages = $this->helper->_get_included_pages('namespace', 'inclhidden:', '', '', $flags); 72 ), $pages); 80 $pages = $this->helper->_get_included_pages('namespace', 'incltest:', '', '', $flags); 83 ), $pages); 85 $pages = $this->helper->_get_included_pages('namespace', 'incltest:', '', '', $flags); 89 ), $pages); 91 $pages = $this->helper->_get_included_pages('namespace', 'incltest:ns', '', '', $flags); [all …]
|
| /plugin/issuelinks/helper/ |
| D | data.php | 262 …$pages = $this->db->getAllPageLinkingToIssue($pmServiceName, $projectKey, $issueId, $isMergeReques… 263 …$pages = $this->db->removeOldLinks($pmServiceName, $projectKey, $issueId, $isMergeRequest, $pages); 265 if (empty($pages)) { 269 $pages = $this->keepNewest($pages); 270 $pages = $this->filterPagesForACL($pages); 271 $pages = $this->addUserToPages($pages); 272 return $pages; 278 * @param array $pages Array of pages sorted(!) from newest to oldest 282 public function keepNewest($pages) argument 285 foreach ($pages as $page) { [all …]
|
| /plugin/networkgraph/action/ |
| D | grapher.php | 36 $pages = []; 109 $pages[$item['id']] = [ 121 foreach($pages as $pid => $item) { 134 if($exists && isset($pages[$id])) { 135 $pages[$pid]['links'][] = $id; 166 $pages[$pid]['media'][] = $mid; 168 $pages[$pid]['media'][] = $mid; 175 $pages[$backlink]['links'][] = $pid; 180 foreach($pages as $pid => $item) { 181 $pages[$pid]['links'] = array_unique($pages[$pid]['links']); [all …]
|
| /plugin/diagramsnet/lib/plugins/ |
| D | page.js | 13 var pages = ui.pages; 15 if (pages.length > 1) 31 var number = pages.length; 70 var pages = ui.pages; 72 if (pages.length > 1) 94 var change = new ChangePage(ui, page, page, ui.pages.length); 100 n = Math.min(n, ui.pages.length - 1); 104 var number = ui.pages.length; 106 ui.removePage(ui.pages[k]); 110 pages = ui.pages; [all …]
|
| /plugin/latexit/classes/ |
| D | RecursionHandler.php | 25 protected $pages; variable in RecursionHandler 42 $this->pages = array(); 51 return in_array($page, $this->pages); 59 $this->pages[] = $page; 67 $search = array_search($page, $this->pages); 69 unset($this->pages[$search]); 70 $this->pages = array_values($this->pages);
|
| /plugin/backlinks/ |
| D | deleted.files | 30 _test/data/pages/backlinks_exclude_syntax.txt 31 _test/data/pages/backlinks_include_syntax.txt 32 _test/data/pages/backlinks_syntax.txt 33 _test/data/pages/backlink_test_pages.txt 34 _test/data/pages/bob_ross_says.txt 35 _test/data/pages/link.txt 36 _test/data/pages/aaa/link.txt 37 _test/data/pages/aaa/bbb/cc/link_a.txt 38 _test/data/pages/aaa/bbb/cc/link_b.txt 39 _test/data/pages/aaa/bbb/cc/link_c.txt [all …]
|
| /plugin/gcalendar/inc/ |
| D | gcal_main.php | 49 $pages = $options['pages']; 50 $pages = substr($pages,1,strlen($pages)-2); 56 $pages = str_replace('@USER@',$user,$pages); 57 $pages = str_replace('@ID@',$ID,$pages); 60 $pages = explode(',',$pages); 118 read_pages_into_calendar($options,$pages,$reference_date); 121 show_gCal_page($options,$pages,$start_date,$end_date);
|
| D | gcal_show.php | 18 function show_gCal_page(&$options,&$pages,$start_date,$end_date) { argument 74 show_column_groups($pages,$options); 77 echo "<tr><th colspan='".(count($pages)+1)."'>"; # the header span over all columns 94 show_column_headers($pages,$options); 100 show_day($options,$i,$pages,$date_format); 107 show_column_headers($pages,$options); 127 function show_day(&$options,$day,&$pages,$date_format) { argument 155 foreach($pages as $page_key=>$page) { 172 foreach($pages as $page_key=>$page) { 218 function show_column_groups(&$pages,&$options) { argument [all …]
|
| /plugin/tagfilter/ |
| D | helper.php | 183 $pages = $indexer->lookupKey('subject', $tag, [$this, 'tagCompare']); 185 foreach ($pages as $page) { 261 $pages = []; 265 $pages[] = $p['id']; 272 $pages = array_unique($pages); 273 $this->ps_pages_id = array_intersect($this->ps_pages_id, $pages); 282 $pages = array(); 286 $pages[] = $p['id']; 289 $pages = array_unique($pages); 290 $this->ps_pages_id = array_diff($this->ps_pages_id, $pages); [all …]
|
| /plugin/displayorphans/ |
| D | README.md | 10 The Display Orphans Plugin can display tables of orphaned, wanted, and linked pages. 22 The plugin offers three block elements that expand into tables listing appropriate pages and other … 26 | `<<display orphaned>>` | Displays a table of orphaned pages, ie pages that exist but aren't linke… 27 | `<<display wanted>>` | Displays a table of wanted pages, ie pages that do not exist but are linke… 28 | `<<display linked>>` | Displays a table of linked pages, ie pages that do exist and are linked to… 38 …phaned_pages` | empty | Space-separated list of pages to ignore when generating tables of orphaned… 39 … | empty | Space-separated list of namespaces to ignore when generating tables of orphaned pages. | 40 …_wanted_pages` | empty | Space-separated list of pages to ignore when generating tables of wanted … 41 …s` | empty | Space-separated list of namespaces to ignore when generating tables of wanted pages. | 42 …_linked_pages` | empty | Space-separated list of pages to ignore when generating tables of linked … [all …]
|
| /plugin/tag/ |
| D | helper.php | 207 $pages = $this->getTopic('', 1, $svtag); 208 if (empty($pages)) { 252 $pages = $this->getIndexedPagesMatchingTagQuery($queryTags); 253 if (!count($pages)) { 257 foreach ($pages as $page) { 338 …* @param array $pages The pages that shall be filtered, each page needs to be an array with a key … 342 public function tagRefine($pages, $tagquery) { argument 343 if (!is_array($pages)) { 345 return $pages; 350 foreach ($pages as $key => $page) { [all …]
|
| /plugin/alphalist/ |
| D | syntax.php | 43 $pages = array(); 48 $pages[0][] = ''; 49 $pages[1][] = ''; 64 $pages[$j-1][$k] = $matches[$j][$i]; 71 dbglog($pages, 'alphalist syntax $pages'); 75 for($i=0;$i<count($pages[0]);$i++) 77 if(empty($pages[0][$i])) 80 $page = $pages[0][$i]; 83 $section = $pages[1][$i]; 122 dbglog($pages, 'alphalist syntax $list');
|
| /plugin/dw2pdf/vendor/setasign/fpdi/src/PdfReader/ |
| D | PdfReader.php | 45 protected $pages = []; variable in setasign\\Fpdi\\PdfReader\\PdfReader 101 $pages = PdfType::resolve(PdfDictionary::get($catalog, 'Pages'), $this->parser); 102 $count = PdfType::resolve(PdfDictionary::get($pages, 'Count'), $this->parser); 140 $page = $this->pages[$pageNumber - 1]; 172 $page = $this->pages[$pageNumber - 1] = $readPages($kids); 179 $this->pages = []; 181 $page = $this->pages[$pageNumber - 1]; 184 $this->pages[$pageNumber - 1] = $page; 201 if (\count($this->pages) > 0) { 213 $this->pages[] = $reference; [all …]
|
| /plugin/advanced/admin/ |
| D | export.php | 147 $pages = array(); 151 search($pages, $conf['datadir'], 'search_allpages', $options, $namespace); 153 return $pages; 164 $pages = array(); 173 … $pages = $this->getPagesFromNamespace($INPUT->str('ns'), ($INPUT->str('include-sub-ns') ? 1 : 0)); 190 foreach ($pages as $page) { 235 $pages = array(); 242 $pages[] = $page['id']; 248 $pages = array_keys($INPUT->arr('pages')); 253 if (!count($pages)) { [all …]
|
| /plugin/tag/_test/ |
| D | topic_sort.test.php | 9 private $pages = array( variable in plugin_tag_topic_sorting_test 31 foreach ($this->pages as $page) { 41 … $this->assertEquals($this->pages, $this->extract_ids($this->helper->getTopic('', null, 'mytag'))); 48 * @param array $pages The pages that shall be used 51 private function extract_ids($pages) { argument 53 foreach ($pages as $page) {
|
| D | topic_and_tagrefine.test.php | 65 $pages = $helper->tagRefine([], 'mytag'); 66 $this->hasPages([], $pages, 'Refine with empty input array and "mytag" query: '); 78 $pages = $helper->tagRefine($this->all_pages, $query); 79 $this->hasPages($expected, $pages, 'Refine: '.$query.': '); 80 $pages = $helper->getTopic('', '', $query); 81 $this->hasPages($expected, $pages, 'Topic: '.$query.': ');
|
| /plugin/farmer/ |
| H A D | admin.php | 20 protected $pages; variable in admin_plugin_farmer 45 $this->pages = ['info']; 47 $this->pages = ['setup']; 49 $this->pages = ['info', 'config', 'new', 'plugins', 'delete']; 54 if (!in_array($this->page, $this->pages)) { 55 $this->page = $this->pages[0]; 82 foreach ($this->pages as $page) {
|
| /plugin/searchindex/ |
| D | SearchIndexManager.js | 9 #pages = null; field in SearchIndexManager 23 pages: '*Found %d pages.', 89 this.#page = this.#pages.shift(); 146 this.#pages = await this.#post('call=pagelist'); 147 if (this.#pages.length) { 148 this.#count = this.#pages.length; 149 this.#message(this.#lang.pages.replace(/%d/, this.#pages.length)); 152 this.#page = this.#pages.shift();
|
| /plugin/pagelist/ |
| D | syntax.php | 56 $pages = []; 79 $pages[] = [ 90 $pages[] = [ 98 return [$flags, $pages]; 111 list($flags, $pages) = $data; 113 foreach ($pages as $i => $page) { 114 $pages[$i]['exists'] = page_exists($page['id']); 124 foreach ($pages as $page) { 133 foreach ($pages as $page) {
|
| /plugin/mindmap/ |
| D | syntax.php | 413 * @return array with pages and media: array('pages'=>pages, 'media'=>media). 452 if($exists && isset($pages[$id])){ 453 $pages[$pid]['links'][] = $id; 484 $pages[$pid]['media'][] = $mid; 486 $pages[$pid]['media'][] = $mid; 492 $pages[$pid]['links'] = array_unique($pages[$pid]['links']); 493 $pages[$pid]['media'] = array_unique($pages[$pid]['media']); 496 return array('pages'=>$pages, 'media'=>$media); 503 $pages =& $data['pages']; 509 foreach($pages as $id => $page) { [all …]
|
| /plugin/combo/ComboStrap/ |
| H A D | HistoricalBreadcrumbMenuItem.php | 81 $pages = breadcrumbs(); 82 if (sizeof($pages) === 0) { 86 $pages = array_reverse($pages); 94 $actualPageId = array_keys($pages)[0]; 95 $actualPageName = array_shift($pages); 99 foreach ($pages as $id => $name) {
|
| /plugin/lastpages/ |
| D | syntax.php | 19 var $pages = array(); variable in syntax_plugin_lastpages 112 $pages = array_reverse($index_links); 117 foreach ($pages as $id => $page) { 122 $this->pages[$key] = $title; 124 $this->pages[$key] = $key; 135 if (is_array($this->pages) && (count($this->pages) > 0)) { 138 foreach ($this->pages as $key => $title) {
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/ |
| D | AnnotateFileRequest.php | 32 public $pages; variable in Google\\Service\\Vision\\AnnotateFileRequest 79 public function setPages($pages) argument 81 $this->pages = $pages; 88 return $this->pages;
|
| /plugin/newpagetemplate/ |
| D | helper.php | 182 $pages = $ini[$t]['page']; 185 $this->process_array($pages, $newpagevars, $t, $user,$usrreplace); 187 $this->process_single($pages, $newpagevars, $t, $user,$usrreplace); 192 function process_array($pages, $newpagevars, $tpl, $user="",$usrreplace) argument 194 for ($i = 0; $i < count($pages); $i++) { 198 $res = $this->pagefromtemplate($tpl, $pages[$i], $newpagevars[$i], $user); 199 $result = $this->writePage($pages[$i], $res); 224 function process_single($pages, $newpagevars, $tpl, $user="",$usrreplace) argument 230 for ($i = 0; $i < count($pages); $i++) { 231 $res = $this->pagefromtemplate($tpl, $pages[$i], $newpagevars, $user); [all …]
|
| /plugin/page4release/ |
| D | rebuildindex.php | 30 $pages = array(); variable 31 search($pages, $conf['datadir'], 'search_allpages', array()); 35 foreach ($pages as $page) { 48 foreach ($page4release as $filename => $pages) { 49 $pagesID = array_keys($pages);
|