/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/ |
H A D | FirefoxProfile.php | 117 $temp_dir = $this->createTempDirectory('WebDriverFirefoxProfile'); 120 copy($this->rdf_file, $temp_dir . DIRECTORY_SEPARATOR . 'mimeTypes.rdf'); 124 $this->installExtension($extension, $temp_dir); 128 mkdir($temp_dir . DIRECTORY_SEPARATOR . $dirname); 134 $target_dir = $temp_dir . DIRECTORY_SEPARATOR . $dirname . DIRECTORY_SEPARATOR 149 file_put_contents($temp_dir . '/user.js', $content); 157 $dir = new RecursiveDirectoryIterator($temp_dir); 163 $temp_dir . DIRECTORY_SEPARATOR 179 $this->deleteDirectory($temp_dir); 192 $temp_dir [all...] |
/plugin/odt/renderer/ |
H A D | pagepdf.php | 79 $temp_dir = $this->config->getParam('tmpdir'); 80 $temp_dir = $temp_dir."/odt/".str_replace(':','-',$ID); 81 if (is_dir($temp_dir)) { io_rmdir($temp_dir,true); } 82 io_mkdir_p($temp_dir); 85 $file = $temp_dir.'/convert.odt'; 86 $pdf_file = $temp_dir.'/convert.pdf'; 90 $command = str_replace('%outdir%', $temp_dir, $command); 117 io_rmdir($temp_dir,true);
|
H A D | page.php | 179 $this->buildODTPathes ($ODTtemplate, $temp_dir); 180 $this->document->importODTStyles($ODTtemplate, $temp_dir); 320 $this->buildODTPathes ($ODTtemplate, $temp_dir); 323 $this->doc = $this->document->getODTFileAsString ($ODTtemplate, $temp_dir);
|
/plugin/maintenance/ |
H A D | helper.php | 10 $this->temp_dir = $conf['tmpdir'].'/maintenance'; 11 $this->script_last_log_file = $this->temp_dir.'/last.log'; 12 $this->script_last_pid_file = $this->temp_dir.'/last.pid'; 13 $this->script_last_script_file = $this->temp_dir.'/last.script'; 14 $this->manual_lock_file = $this->temp_dir.'/.lock'; 39 $locks = glob($this->temp_dir.'/*.lock'); 41 if (is_file($this->temp_dir.'/.lock')) return 1; 52 $lockfile = $this->temp_dir.'/'.$script_hash.'.lock'; 73 $lockfile = $this->temp_dir.'/'.$script_hash.'.lock'; 103 $locks = glob($this->temp_dir.'/*.lock');
|
/plugin/gitbacked/lib/ |
H A D | GitBackedUtil.php | 33 protected static $temp_dir = ''; variable in GitBackedUtil 94 if (empty(self::$temp_dir)) { 96 self::$temp_dir = $conf['tmpdir'].'/gitbacked'; 97 io_mkdir_p(self::$temp_dir); 99 return self::$temp_dir;
|
/plugin/odtplus2dw/ |
H A D | installLatestPandoc.sh | 2 temp_dir=$(mktemp -d) 4 dpkg -i $temp_dir/*amd64.deb 5 rm -rf $temp_dir
|
/plugin/file2dw/docker/dokuwikiapp/ |
H A D | installLatestPandoc.sh | 2 temp_dir=$(mktemp -d) 4 dpkg -i $temp_dir/*amd64.deb 5 rm -rf $temp_dir
|
/plugin/odp/ |
H A D | renderer.php | 417 $temp_dir = $conf['tmpdir']; // version > 20070626 421 $this->temp_dir = $temp_dir."/odp/".str_replace(':','-',$ID); 422 if (is_dir($this->temp_dir)) { $this->io_rm_rf($this->temp_dir); } 423 io_mkdir_p($this->temp_dir); 427 $this->ZIP->Extract($template_path, $this->temp_dir); 436 $old_content = io_readFile($this->temp_dir.'/content.xml'); 439 $this->doc, $this->temp_dir.'/content.xml', true); 450 '', $this->temp_dir.'/content.xml', true); 467 $this->ZIP->Compress(null, $this->temp_dir, null); 468 $this->io_rm_rf($this->temp_dir); [all …]
|
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | getid3.php | 37 $temp_dir = ini_get('upload_tmp_dir'); variable 38 if ($temp_dir && (!is_dir($temp_dir) || !is_readable($temp_dir))) { 39 $temp_dir = ''; variable 43 $temp_dir = sys_get_temp_dir(); variable 45 $temp_dir = @realpath($temp_dir); // see https://github.com/JamesHeinrich/getID3/pull/10 variable 49 $temp_dir = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $temp_dir); variable 52 $temp_dir .= DIRECTORY_SEPARATOR; 66 $temp_dir = ''; variable 70 if (!$temp_dir) { 75 define('GETID3_TEMP_DIR', $temp_dir); [all …]
|
/plugin/openid/Auth/OpenID/ |
H A D | FileStore.php | 45 protected $temp_dir = ''; variable in Auth_OpenID_FileStore 74 $this->temp_dir = $directory . DIRECTORY_SEPARATOR . 'temp'; 100 Auth_OpenID::ensureDir($this->temp_dir)); 117 $name = Auth_OpenID_FileStore::_mkstemp($dir = $this->temp_dir);
|
/plugin/gitbacked/action/ |
H A D | editcommit.php | 22 $this->temp_dir = GitBackedUtil::getTempDir(); 105 $lastPullFile = $this->temp_dir.'/lastpull.txt';
|
/plugin/fedauth/Auth/OpenID/ |
H A D | FileStore.php | 67 $this->temp_dir = $directory . DIRECTORY_SEPARATOR . 'temp'; 93 Auth_OpenID::ensureDir($this->temp_dir)); 110 $name = Auth_OpenID_FileStore::_mkstemp($dir = $this->temp_dir);
|