Lines Matching refs:INPUT

87         global $conf, $INPUT;
121 if ($INPUT->has('selection')) {
150 global $INPUT;
161 $title = $INPUT->str('pdftitle'); //DEPRECATED
162 $title = $INPUT->str('book_title', $title, true);
177 if (!$title = $INPUT->str('book_title')) {
180 $pdfnamespace = cleanID($INPUT->str('book_ns'));
186 $order = $INPUT->str('book_order', 'natural', true);
193 $depth = $INPUT->int('book_nsdepth', 0);
205 $excludes = $INPUT->arr('excludes');
212 $excludesns = $INPUT->arr('excludesns');
247 $title = $INPUT->str('pdfbook_title'); //DEPRECATED
248 $title = $INPUT->str('book_title', $title, true);
254 } elseif ($INPUT->has('selection')) {
262 $list = json_decode($INPUT->str('selection', '', true), true);
267 $title = $INPUT->str('pdfbook_title'); //DEPRECATED
268 $title = $INPUT->str('book_title', $title, true);
272 } elseif ($INPUT->has('savedselection')) {
279 $savedselection = $SelectionHandling->loadSavedSelection($INPUT->str('savedselection'));
281 $title = $INPUT->str('book_title', $title, true);
304 if (!$INPUT->bool('book_skipforbiddenpages') && $skippedpages !== []) {
414 global $REV, $INPUT, $DATE_AT;
560 if ($INPUT->str('debughtml', 'text', true) == 'text') {
580 global $INPUT;
581 $outputTarget = $INPUT->str('outputTarget', $this->getConf('output'));
961 global $INPUT;
967 $this->exportConfig['pagesize'] = $INPUT->str('pagesize', $this->getConf('pagesize'), true);
968 $this->exportConfig['orientation'] = $INPUT->str('orientation', $this->getConf('orientation'), true);
971 $this->exportConfig['font-size'] = $INPUT->str('font-size', $this->getConf('font-size'), true);
973 $doublesided = $INPUT->bool('doublesided', (bool)$this->getConf('doublesided'));
976 $this->exportConfig['watermark'] = $INPUT->str('watermark', '');
978 $hasToC = $INPUT->bool('toc', (bool)$this->getConf('toc'));
981 $toclevels = $INPUT->str('toclevels', $this->getConf('toclevels'), true);
1020 $this->exportConfig['maxbookmarks'] = $INPUT->int('maxbookmarks', $this->getConf('maxbookmarks'), true);
1023 $tpl = $INPUT->str('tpl', $tplconf, true);
1032 $this->exportConfig['isDebug'] = $conf['allowdebug'] && $INPUT->has('debughtml');