Lines Matching refs:this

50         $functions->debug->setDebugFile($this->getConf('debugFile'));
56 $functions->debug->setDebugLevel($this->getConf('debugLevel'));
59 … $functions->debug->isAJAX = $this->getConf('ignoreAJAXError') ? false : $functions->debug->isAJAX;
62 $this->pattern = $INPUT->str('pattern');
63 if ( empty( $this->pattern ) )
66 $this->pattern = $functions->requestParametersToCacheHash($params);
69 $this->isCLI = (!$_SERVER['REMOTE_ADDR'] && 'cli' == php_sapi_name());
71 $this->cachetime = $this->getConf('cachetime');
73 $this->cachetime = 0;
77 $this->origZipFile = $this->getConf('zipfilename');
79 $this->ignoreNon200 = $this->getConf('ignoreNon200');
82 … $this->downloadZipFile = $functions->getSpecialExportFileName($this->origZipFile, $this->pattern);
85 $this->zipFile = mediaFN($this->downloadZipFile);
87 $this->tmpDir = mediaFN(getNS($this->origZipFile));
88 $this->exportLinkedPages = $INPUT->bool( 'exportLinkedPages', true );
90 $this->namespace = $functions->getNamespaceFromID( $INPUT->str('ns'), $PAGE );
91 $this->addParams = $INPUT->bool( 'addParams' );
93 $this->useTOCFile = $INPUT->bool( 'useTocFile' );
97 …if (empty($this->namespace)) { $this->namespace = $functions->getNamespaceFromID(getNS($ID), $pg);…
99this->exportNamespace = !empty($ens) && preg_match("%^" . preg_quote($functions->getNamespaceFromI…
101 …$this->TOCMapWithoutTranslation = intval($_REQUEST['TOCMapWithoutTranslation'] ?? 0) == 1 ? true :…
103 $this->defaultLang = $INPUT->str( 'defaultLang', $conf['lang'], true );
106 $this->additionalParameters = $_REQUEST;
107 $functions->removeWikiVariables($this->additionalParameters, true);
110 $this->additionalParameters['nocache']=1;
113 $this->excludePattern = $INPUT->str( 'exclude', $this->getConf('exclude'), true );