Home
last modified time | relevance | path

Searched refs:dataDir (Results 1 – 12 of 12) sorted by relevance

/plugin/fho/
Dsave_status.php5 $dataDir = __DIR__ . '/data/'; variable
7 $filename = $dataDir . "fho_{$today}.json";
11 if (!file_exists($dataDir)) {
12 mkdir($dataDir, 0777, true);
21 $dataDir = __DIR__ . '/data/'; variable
23 $filename = $dataDir . "fho_{$today}.json";
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DTemporaryFileFilterPlugin.php64 private $dataDir; variable in Sabre\\DAV\\TemporaryFileFilterPlugin
73 * @param string|null $dataDir
75 function __construct($dataDir = null) { argument
77 if (!$dataDir) $dataDir = ini_get('session.save_path') . '/sabredav/';
78 if (!is_dir($dataDir)) mkdir($dataDir);
79 $this->dataDir = $dataDir;
292 return $this->dataDir;
/plugin/webdav/vendor/sabre/dav/lib/DAV/
DTemporaryFileFilterPlugin.php64 private $dataDir; variable in Sabre\\DAV\\TemporaryFileFilterPlugin
73 * @param string|null $dataDir
75 function __construct($dataDir = null) { argument
77 if (!$dataDir) $dataDir = ini_get('session.save_path') . '/sabredav/';
78 if (!is_dir($dataDir)) mkdir($dataDir);
79 $this->dataDir = $dataDir;
295 return $this->dataDir;
/plugin/userhomepage/
Daction.php48 $this->dataDir = $conf['savedir'];
50 …if (($this->getConf('create_private_ns')) && (!is_file($this->dataDir.'/'.$this->getConf('template…
68 …if (($this->getConf('create_public_page')) and (!is_file($this->dataDir.'/'.$this->getConf('templa…
82 …nf('public_pages_ns'),':%NAME%:%START%') !== false) and (!is_file($this->dataDir.'/'.$this->getCon…
121 …if ($this->getConf('create_private_ns') && is_file($this->dataDir.'/'.$this->getConf('templates_pa…
123 …$this->private_page_template = $this->dataDir.'/'.$this->getConf('templates_path').'/userhomepage_…
134 …if ($this->getConf('create_private_ns') && (is_dir($this->dataDir.'/'.$this->getConf('templates_pa…
136 … $path = realpath($this->dataDir.'/'.$this->getConf('templates_path').'/uhp_private_skeleton/');
147 …if ((is_file($this->dataDir.'/'.$this->getConf('templates_path').'/uhp_private_skeleton'.$file)) a…
151 …$this->custom_page_template = $this->dataDir.'/'.$this->getConf('templates_path').'/uhp_private_sk…
[all …]
/plugin/deletepageguard/
H A Daction.php142 * @param string $dataDir Base data directory (usually $conf['datadir'])
145 protected function getRelativeFilePath($fullPath, $dataDir) { argument
148 $dataDir = str_replace('\\', '/', $dataDir);
150 $base = rtrim($dataDir, '/');
/plugin/deletepageguard/tests/
H A Dplugin_test_adapter.php144 public function getRelativeFilePath($fullPath, $dataDir) { argument
145 return parent::getRelativeFilePath($fullPath, $dataDir);
/plugin/combo/ComboStrap/
H A DFsWikiUtility.php183 $dataDir = $conf['datadir'];
209 $dataDir,
/plugin/glossary/
Dglossary.class.php28 var $dataDir; // data directory for specific namespace for xml file variable in glossary
87 $this->dataDir = $this->dataRootDir.$this->md5ns."/";
88 glossary::createDirIsNeeded ($this->dataDir);
210 $fileName = $this->dataDir.$this->configFile;
211 @mkdir ($this->dataDir);
212 @chmod ($this->dataDir, 0775);
226 if (!is_dir ($this->dataDir))
232 $pathDirObj = opendir ($this->dataDir);
244 $fileName = $this->dataDir.$status.$md5id.".xml";
273 $fileName = $this->dataDir.$status.$md5id.".xml";
[all …]
/plugin/freechat/phpfreechat/misc/
Dcreatewebinstaller.php10 $phpi->dataDir($phpinstaller_path.'/engine_data');
/plugin/indexmenu/
DSearch.php230 $dataDir = $conf['datadir'];
234 $this->customSearch($data, $dataDir, $callback, $opts, $fsDir);
236 search($data, $dataDir, $callback, $opts, $fsDir);
/plugin/schedule/
DscheduleRoot.class.php322 $fileName = $schedules->dataDir.$this->configFile;
323 scheduleRoot::createDirIsNeeded ($schedules->dataDir);
Dschedules.class.php35 var $dataDir; // schedule database variable in schedules
98 $this->dataDir = $this->scheduleRoot->dataRootDir.$this->md5ns.'/';
108 $config = $this->scheduleRoot->readConfig ($this->dataDir);
148 $this->readSchedules ($this->dataDir);
277 $fileName = $this->dataDir.$this->scheduleRoot->mbrPrefix.$member.'.xml';
283 $this->readSchedule ($this->dataDir.$this->scheduleRoot->propFile, true);
301 $fileName = $this->dataDir.$this->scheduleRoot->propFile;
402 @unlink ($this->dataDir.$this->scheduleRoot->mbrPrefix.$member.'.xml');