Lines Matching refs:return

37         return 189;
41 return 'substition';
45 $return = $this->_getDefaultOptions();
46 $return['pos'] = $pos;
51 optionParser::checkOption($match, "subns", $return['subns'], true);
52 optionParser::checkOption($match, "nopages", $return['nopages'], true);
53 optionParser::checkOption($match, "simpleListe?", $return['simpleList'], true);
54 optionParser::checkOption($match, "tree", $return['tree'], true);
55 optionParser::checkOption($match, "numberedListe?", $return['numberedList'], true);
56 optionParser::checkOption($match, "simpleLineBreak", $return['lineBreak'], true);
57 optionParser::checkOption($match, "title", $return['title'], true);
58 optionParser::checkOption($match, "idAndTitle", $return['idAndTitle'], true);
59 optionParser::checkOption($match, "h1", $return['title'], true);
60 optionParser::checkOption($match, "simpleLine", $return['simpleLine'], true);
61 optionParser::checkOption($match, "sort(By)?Id", $return['sortid'], true);
62 optionParser::checkOption($match, "reverse", $return['reverse'], true);
63 optionParser::checkOption($match, "pagesinns", $return['pagesinns'], true);
64 optionParser::checkOption($match, "nat(ural)?Order", $return['natOrder'], true);
65 optionParser::checkOption($match, "sort(By)?Date", $return['sortDate'], true);
66 optionParser::checkOption($match, "sort(By)?CreationDate", $return['sortByCreationDate'], true);
67 optionParser::checkOption($match, "hidenopages", $return['hidenopages'], true);
68 optionParser::checkOption($match, "hidenosubns", $return['hidenosubns'], true);
69 optionParser::checkOption($match, "showhidden", $return['showhidden'], true);
70 optionParser::checkOption($match, "(use)?Pictures?", $return['usePictures'], true);
71 optionParser::checkOption($match, "(modification)?Dates?OnPictures?", $return['modificationDateOnPictures'], true);
72 optionParser::checkOption($match, "displayModificationDates?", $return["displayModificationDate"], true);
73 optionParser::checkOption($match, "includeItemsInTOC", $return["includeItemsInTOC"], true);
74 optionParser::checkOption($match, "sidebar", $return["sidebar"], true);
75 optionParser::checkRecurse($match, $return['maxDepth']);
76 optionParser::checkNbColumns($match, $return['nbCol']);
77 optionParser::checkSimpleStringArgument($match, $return['textPages'], $this, 'textPages');
78 optionParser::checkSimpleStringArgument($match, $return['customTitle'], $this, 'customTitle');
79 optionParser::checkSimpleStringArgument($match, $return['sortByMetadata'], $this, 'sortByMetadata');
80 optionParser::checkSimpleStringArgument($match, $return['textNS'], $this, 'textNS');
81 optionParser::checkDictOrder($match, $return['dictOrder'], $this);
82 optionParser::checkRegEx($match, "pregPages?On=\"([^\"]*)\"", $return['pregPagesOn']);
83 optionParser::checkRegEx($match, "pregPages?Off=\"([^\"]*)\"", $return['pregPagesOff']);
84 optionParser::checkRegEx($match, "pregPages?TitleOn=\"([^\"]*)\"", $return['pregPagesTitleOn']);
85 optionParser::checkRegEx($match, "pregPages?TitleOff=\"([^\"]*)\"", $return['pregPagesTitleOff']);
86 optionParser::checkRegEx($match, "pregNSOn=\"([^\"]*)\"", $return['pregNSOn']);
87 optionParser::checkRegEx($match, "pregNSOff=\"([^\"]*)\"", $return['pregNSOff']);
88 optionParser::checkRegEx($match, "pregNSTitleOn=\"([^\"]*)\"", $return['pregNSTitleOn']);
89 optionParser::checkRegEx($match, "pregNSTitleOff=\"([^\"]*)\"", $return['pregNSTitleOff']);
90 optionParser::checkNbItemsMax($match, $return['nbItemsMax']);
91 optionParser::checkGlobalExclude($this->getConf('global_exclude'), $return['excludedPages'], $return['excludedNS']);
92 optionParser::checkExclude($match, $return['excludedPages'], $return['excludedNS'], $return['excludeSelfPage']);
93 optionParser::checkAnchorName($match, $return['anchorName']);
94 optionParser::checkActualTitle($match, $return['actualTitleLevel']);
95 optionParser::checkSimpleStringArgument($match, $return['defaultPicture'], $this, 'defaultPicture');
99 if ($return["sidebar"]) {
101 $return['wantedNS'] = $match;
104 $return['wantedNS'] = $nsFinder->getWantedNs();
105 $return['safe'] = $nsFinder->isNsSafe();
106 $return['wantedDir'] = $nsFinder->getWantedDirectory();
109 return $return;
113 return array(
153 return TRUE;
159 return TRUE;
170 return TRUE;
183 return TRUE;
203 return $data['pagesinns'];
224 return $data['textPages'] === '' && !$data['nopages'] && $data['subns'];
229 return @opendir($conf['datadir'] . '/' . $data['wantedDir']) !== false && $data['safe'];
234 return new nspages_printerSimpleList($this, $mode, $renderer, $data);
236 return new nspages_printerSimpleList($this, $mode, $renderer, $data, true);
238 return new nspages_printerOneLine($this, $mode, $renderer, $data);
240 return new nspages_printerLineBreak($this, $mode, $renderer, $data);
242 return new nspages_printerPictures($this, $mode, $renderer, $data);
244 return new nspages_printerTree($this, $mode, $renderer, $data);
246 return new nspages_printerNice($this, $mode, $renderer, $data['nbCol'], $data['anchorName'], $data);
248 return new nspages_printerSimpleList($this, $mode, $renderer, $data);