Home
last modified time | relevance | path

Searched refs:file (Results 651 – 675 of 3491) sorted by relevance

1...<<21222324252627282930>>...140

/plugin/zip/pear/File/
H A DArchive.php40 function File_Archive_cleanCache($file, $group) argument
42 $file = split('_', $file);
43 if (count($file) != 3) {
47 $name = $file[2];
50 $group = $file[1];
395 $file = substr($realPath, 0, $pos);
397 $dotPos = strrpos($file, '.');
400 $extension = substr($file, $dotPos+1);
404 (is_dir($file) && $source==null)));
406 $reachable = $file;
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dpdf.fpdf.php1509 $file = substr($file, 0, strlen($file) - 4);
1934 if (!$bEmbed) { $file = ''; };
1977 if ($file) {
2086 if (!isset($this->images[$file])) {
2099 $this->images[$file] = $info;
2102 $info = $this->images[$file];
2559 function _parsejpg($file) { argument
2560 $size_info = GetImageSize($file);
2580 $f=fopen($file,'rb');
2596 function _parsepng($file) { argument
[all …]
/plugin/html2pdf/html2pdf/html2ps/fpdf/
H A Dfpdf.php1418 $file = substr($file, 0, strlen($file) - 4);
1940 if ($file=='') {
1992 if ($file) {
2436 $info=$this->images[$file];
2763 $file=$font['file'];
2764 if($file) {
3036 function _parsejpg($file) argument
3039 $a=GetImageSize($file);
3060 $f = fopen($file,'rb');
3069 function _parsepng($file) { argument
[all …]
/plugin/elasticsearch/_test/
H A Ddocindex.test.php40 Test file in .docx format',
54 * @param $file
57 public function testDocx($file, $expected) argument
59 $this->assertEquals($expected, $this->docparser->parse($file));
/plugin/dokutranslate/
H A Dutils.php21 function getCleanInstructions($file) { argument
22 $instructions = p_cached_instructions($file);
60 $ret = @file(DOKUTRANSLATE_MODLIST);
/plugin/abbrlist/
H A Dsyntax.php80 foreach($config_cascade['acronyms']['local'] as $file)
82 if(file_exists($file))
84 $data['acronyms'] = array_merge($data['acronyms'], confToHash($file));
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DPhptTestSuite.php31 foreach ($files as $file) {
32 $this->addTestFile($file);
/plugin/fontface/
H A Daction.php110 * @param string $file File to check (path to system directory)
115 function _isFileOk($file, $fileDisplay, $fileConfig) { argument
116 if (empty($file)) {
119 } else if (!file_exists($file)) {
/plugin/owncloud/
H A Dscript.js57 start: function(file){ argument
65 data: {file: file},
66 success: function(ret) {if(ret != file){filehistory.putContent(ret, $row);}else{}},
/plugin/tcycle/
H A Dsyntax.php132 foreach($files as $file) {
133 if (!is_file($file)) { break; }
134 $detail = str_replace($conf['mediadir'], '/_detail', $file);
135 $media = str_replace($conf['mediadir'], '/_media', $file);
136 $meta = new JpegMeta($file);
/plugin/gemini/
H A Dcli.php229 $file = mediaFN($id);
230 list($ext, $mime, $dl) = mimetype($file);
234 'body' => file_get_contents($file),
254 $file = wikiFN($ID);
258 'body' => p_cached_output($file, 'gemini', $ID),
/plugin/codebutton/
H A Daction.php42 'open' => '<file>\n',
43 'close' => '\n</file>',
/plugin/combo/vendor/carica/phpcss/
H A D.editorconfig1 # top-most EditorConfig file
4 # Unix-style newlines with a newline ending every file
/plugin/openas/
H A Daction.php45 $file = wikiFN($_REQUEST['saveas_orig']);
46 if(file_exists($file)&&!$this->locks_set) @unlink($file);
232 $file = wikiFN($orig_id);
233 if(file_exists($file)) @unlink($file);
/plugin/templateconfhelper/
H A DREADME30 * $_GET[template /^[\w-]*$/ - template dir to search for the file
58 <file php main.php>
61 </file>
72 * getConfigPath( $type, $file ) - find file in cascade_config[$type]
75 …* tpl_include( $file, $t=false ) - use getConfigPath to include file from cascade_config['template…
/plugin/authucenter/
H A Dauth.php526 while(false !== ( $file = readdir($dir)) ) {
527 if (( $file != '.' ) && ( $file != '..' )) {
528 if ( is_dir($src . '/' . $file) ) {
529 $this->_recurse_copy($src . '/' . $file,$dst . '/' . $file);
532 copy($src . '/' . $file,$dst . '/' . $file);
/plugin/cronojob/
H A Dpseudocron.php196 $file = fopen($logfile,"a");
197 fputs($file,date("r",time())." ".$msg);
198 fclose($file);
348 $file = explode("\n", $cronTabFile);
353 for ($i=0;$i<count($file);$i++) {
354 if ($file[$i][0]!='#') {
357 …*]+)\\s+([-0-7,/*]+|(-|/|Sun|Mon|Tue|Wed|Thu|Fri|Sat)+)\\s+([^#]*)\\s*(#.*)?$~i",$file[$i],$job)) {
368 $jobs[$jobNumber][PC_CRONLINE] = $file[$i];
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DWavFile.java29 private File file; // File that will be read from or written to field in WavFile
86 public static WavFile newWavFile(File file, int numChannels, in newWavFile() argument
91 wavFile.file = file; in newWavFile()
112 wavFile.oStream = new FileOutputStream(file); in newWavFile()
185 public static WavFile openWavFile(File file) throws IOException, in openWavFile() argument
189 wavFile.file = file; in openWavFile()
192 wavFile.iStream = new FileInputStream(file); in openWavFile()
213 if (file.length() != chunkSize + 8) { in openWavFile()
215 + ") does not match file size (" + file.length() + ")"); in openWavFile()
731 out.printf("File: %s\n", file); in display()
/plugin/geonav/server/
H A DgetWikiData.php8 $file = wikiFN($dokuPageId);
9 $data = io_readWikiPage($file, $dokuPageId, $rev=false);
/plugin/dir/
H A Dmake_tgz.sh22 tar --create -z --verbose --exclude 'manager.dat' --file "${plugin_tgz_file}" "./dir"
28 tar --list --file "${plugin_tgz_file}"
/plugin/api/_test/
H A Dutils.php18 $file = __DIR__ . '/../plugin.info.txt';
19 self::$PLUGIN_INFO = confToHash($file);
/plugin/autlogin/
H A Dadmin.php1046 $ACTUAL_ACL = file(DOKU_CONF.'acl.auth.php');
1100 $AUTH_ACL = file(DOKU_CONF.'acl.auth.php');
1156 $actual_users = file(DOKU_CONF.'users.auth.php');
1233 $actual_users = file(DOKU_CONF.'users.auth.php');
1268 $actual_users = file(DOKU_CONF.'users.auth.php');
1307 $acl_config = file(DOKU_CONF.'acl.auth.php');
1376 $AUTH_ACL = file(DOKU_CONF.'users.auth.php');
1468 $file = file(DOKU_PLUGIN.'/autlogin/settings/browsers.php');
1469 foreach($file as $line){
1480 $file = file(DOKU_PLUGIN.'/autlogin/settings/systems.php');
[all …]
/plugin/bookcreator/script/
H A DREADME.txt3 http://johnculviner.com/jquery-file-download-plugin-for-ajax-like-feature-rich-file-downloads/
/plugin/pglist/
H A Dsyntax.php158 if ($data['nostart'] and ($item['file'] == $conf['start'].'.txt'))
200 return strcmp($a['file'],$b['file']);
/plugin/randominc/
H A Daction.php92 $file = wikiFN($page);
95 if (@file_exists($file) != $exists) {
100 if (($acl = $this->_acl_read_check($page)) != 'NONE') { $depends[] = $file; }

1...<<21222324252627282930>>...140