Lines Matching refs:list

33     /** @var array list of pages included in exported pdf */
34 protected $list = [];
97 [$this->title, $this->list] = $this->collectExportablePages($event);
139 * Obtain list of pages and title, for different methods of exporting the pdf.
153 // list of one or multiple pages
154 $list = [];
160 $list[0] = $ID;
234 $list[] = $item['id'];
238 if (!in_array($pdfnamespace . ':' . $conf['start'], $list, true)) {
240 array_unshift($list, rtrim($pdfnamespace, ':'));
244 } elseif (!empty($_COOKIE['list-pagelist'])) {
253 $list = explode("|", $_COOKIE['list-pagelist']);
262 $list = json_decode($INPUT->str('selection', '', true), true);
263 if (!is_array($list) || $list === []) {
282 $list = $savedselection['selection'];
292 $list = array_map('cleanID', $list);
295 foreach ($list as $index => $pageid) {
298 unset($list[$index]);
301 $list = array_filter($list, 'strlen'); //use of strlen() callback prevents removal of pagename '0'
309 return [$title, $list];
322 $cachekey = implode(',', $this->list)
335 foreach ($this->list as $pageid) {
359 $depends['files'] = array_map('wikiFN', $this->list);
438 $this->getDocumentLanguage($this->list[0]) //use language of first page
525 $no_pages = count($this->list);
526 foreach ($this->list as $page) {
821 * Returns a list of possible Plugin PDF Styles
829 $list = [];
835 $list[DOKU_PLUGIN . "$p/screen.css"] = DOKU_BASE . "lib/plugins/$p/";
836 $list[DOKU_PLUGIN . "$p/screen.less"] = DOKU_BASE . "lib/plugins/$p/";
838 $list[DOKU_PLUGIN . "$p/style.css"] = DOKU_BASE . "lib/plugins/$p/";
839 $list[DOKU_PLUGIN . "$p/style.less"] = DOKU_BASE . "lib/plugins/$p/";
842 $list[DOKU_PLUGIN . "$p/all.css"] = DOKU_BASE . "lib/plugins/$p/";
843 $list[DOKU_PLUGIN . "$p/all.less"] = DOKU_BASE . "lib/plugins/$p/";
846 $list[DOKU_PLUGIN . "$p/pdf.css"] = DOKU_BASE . "lib/plugins/$p/";
847 $list[DOKU_PLUGIN . "$p/pdf.less"] = DOKU_BASE . "lib/plugins/$p/";
849 $list[DOKU_PLUGIN . "$p/print.css"] = DOKU_BASE . "lib/plugins/$p/";
850 $list[DOKU_PLUGIN . "$p/print.less"] = DOKU_BASE . "lib/plugins/$p/";
866 $list[tpl_incdir() . $file] = tpl_basedir() . $file;
870 return $list;
880 return $this->list;