Home
last modified time | relevance | path

Searched refs:pages (Results 1 – 25 of 854) sorted by relevance

12345678910>>...35

/plugin/include/_test/
H A Dnamespace_includes.test.php50 $pages = array();
54 $pages [] = $file;
58 return $pages;
72 ), $pages);
83 ), $pages);
89 ), $pages);
95 ), $pages);
102 ), $pages);
137 array_multisort($pages);
154 ), $pages);
[all …]
/plugin/issuelinks/helper/
H A Ddata.php265 if (empty($pages)) {
269 $pages = $this->keepNewest($pages);
270 $pages = $this->filterPagesForACL($pages);
271 $pages = $this->addUserToPages($pages);
272 return $pages;
285 foreach ($pages as $page) {
296 * @param array $pages
303 foreach ($pages as $page) {
314 * @param array $pages
320 foreach ($pages as &$page) {
[all …]
/plugin/latexit/classes/
H A DRecursionHandler.php25 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/diagramsnet/lib/plugins/
H A Dpage.js13 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/gcalendar/inc/
H A Dgcal_main.php49 $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);
H A Dgcal_show.php74 show_column_groups($pages,$options);
94 show_column_headers($pages,$options);
100 show_day($options,$i,$pages,$date_format);
107 show_column_headers($pages,$options);
155 foreach($pages as $page_key=>$page) {
172 foreach($pages as $page_key=>$page) {
218 function show_column_groups(&$pages,&$options) { argument
230 $page_count = count($pages);
239 foreach($pages as $key=>$page_id) {
255 function show_column_headers(&$pages,&$options) { argument
[all …]
/plugin/pagelist/
H A Dsyntax.php56 $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']);
128 usort($pages, $fnc);
131 krsort($pages);
135 foreach ($pages as $page) {
[all …]
/plugin/displayorphans/
H A DREADME.md10 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/tagfilter/
H A Dhelper.php185 foreach ($pages as $page) {
261 $pages = [];
272 $pages = array_unique($pages);
282 $pages = array();
289 $pages = array_unique($pages);
300 $pages = array();
310 $pages = array_unique($pages);
404 $pages = array();
405 $pages[''] = '';
417 asort($pages);
[all …]
/plugin/alphalist/
H A Dsyntax.php43 $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/tag/
H A Dhelper.php208 if (empty($pages)) {
253 if (!count($pages)) {
257 foreach ($pages as $page) {
343 if (!is_array($pages)) {
345 return $pages;
352 unset($pages[$key]);
356 return $pages;
397 $pages = array_filter($pages, [$this, 'isVisible']);
399 if (empty($pages)) continue;
473 if (!is_array($pages[$tag])) {
[all …]
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfReader/
H A DPdfReader.php45 protected $pages = []; variable in setasign\\Fpdi\\PdfReader\\PdfReader
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;
223 $this->pages[] = $object;
230 $count = PdfType::resolve(PdfDictionary::get($pages, 'Count'), $this->parser);
[all …]
/plugin/tag/_test/
H A Dtopic_sort.test.php9 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) {
H A Dtopic_and_tagrefine.test.php65 $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/advanced/admin/
H A Dexport.php147 $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/farmer/
H A Dadmin.php18 protected $pages; variable in admin_plugin_farmer
41 $this->pages = array(
46 $this->pages = array(
50 $this->pages = array(
62 if(!in_array($this->page, $this->pages)) {
63 $this->page = $this->pages[0];
88 foreach($this->pages as $page) {
/plugin/mindmap/
H A Dsyntax.php452 if($exists && isset($pages[$id])){
453 $pages[$pid]['links'][] = $id;
484 $pages[$pid]['media'][] = $mid;
492 $pages[$pid]['links'] = array_unique($pages[$pid]['links']);
493 $pages[$pid]['media'] = array_unique($pages[$pid]['media']);
503 $pages =& $data['pages'];
509 foreach($pages as $id => $page) {
516 foreach($pages as $id => $page){
533 $pages =& $data['pages'];
558 foreach($pages as $id => $item){
[all …]
/plugin/combo/ComboStrap/
H A DHistoricalBreadcrumbMenuItem.php81 $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/
H A Dsyntax.php19 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/
H A DAnnotateFileRequest.php32 public $pages; variable in Google\\Service\\Vision\\AnnotateFileRequest
79 public function setPages($pages) argument
81 $this->pages = $pages;
88 return $this->pages;
/plugin/page4release/
H A Drebuildindex.php30 $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);
/plugin/searchindex/
H A Dscript.js16 var pages = null,
61 page = pages.shift();
116 pages = response.split("\n");
117 count = pages.length;
118 message(lang.pages.replace(/%d/, pages.length));
121 page = pages.shift();
/plugin/newpagetemplate/
H A Dhelper.php182 $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/phprestrict/
H A DREADME.md2 Dokuwiki plugin to restrict php inclusion to pages by namespace or name.
4 Overrides the current PHP setting, which enables PHP on all pages.
7 You can then use the ACL to determine what users have the ability to edit PHP pages.
9 You can also disable "view source" on PHP pages (recommended).
11 PHP is also disabled on old revision pages.
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3ListPagesResponse.php47 public function setPages($pages) argument
49 $this->pages = $pages;
56 return $this->pages;

12345678910>>...35