Home
last modified time | relevance | path

Searched refs:file (Results 2626 – 2650 of 3491) sorted by last modified time

1...<<101102103104105106107108109110>>...140

/plugin/inclform/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
/plugin/src/
H A Daction.php83 foreach ($hasPart as $file => $data) {
87 $file = $this->getConf['location'].$file;
92 $mtime = @filemtime($file);
H A Dsyntax.php97 $file = $this->_wikiPathFileToAbsolute($data['f'], $namespaceTypecasted, $conf['mediadir']);
98 $fileName = pathinfo($file, PATHINFO_BASENAME);
104 $code = $this->_assembling($this->_fetchFile($file, $data['start'], $data['end']));
107 $lang = pathinfo($file, PATHINFO_EXTENSION); //синтаксис по расширению
139 $content = file($fileName);
H A Dplugin.info.txt6 desc Includes a source uploaded file using the geshi highlighter
/plugin/icalevents/vendor/composer/
H A Dautoload_real.php55 foreach ($includeFiles as $fileIdentifier => $file) {
56 composerRequire19cd441df9c39b4d4ac3b637fe5c3a69($fileIdentifier, $file);
63 function composerRequire19cd441df9c39b4d4ac3b637fe5c3a69($fileIdentifier, $file) argument
66 require $file;
H A DClassLoader.php322 includeFile($file);
347 return $file;
362 if (false === $file) {
367 return $file;
385 return $file;
395 return $file;
414 return $file;
424 return $file;
430 return $file;
442 function includeFile($file) argument
[all …]
/plugin/icalevents/
H A DLICENSE.txt5 LICENSE file in the corresponding subdirectory within the directory
297 to attach them to the start of each source file to most effectively
298 convey the exclusion of warranty; and each file should have at least
/plugin/barcodes/vendor/jucksearm/php-barcode/
H A DBarcode.php34 $file = null, argument
43 ->setFile($file)
54 $file = null, argument
63 ->setFile($file)
H A DDatamatrix.php29 $file = null, argument
36 ->setFile($file)
45 $file = null, argument
52 ->setFile($file)
H A DLICENSE630 to attach them to the start of each source file to most effectively
631 state the exclusion of warranty; and each file should have at least
H A DPDF417.php29 $file = null, argument
36 ->setFile($file)
45 $file = null, argument
52 ->setFile($file)
H A DQRcode.php34 $file = null, argument
43 ->setFile($file)
54 $file = null, argument
63 ->setFile($file)
H A DREADME.md30 You can also edit your project's `composer.json` file to require `jucksearm/php-barcode`.
70 Barcode::png($code, $type, $file= null, $scale = null, $height = null, $rotate = null, $color = nul…
72 Barcode::svg($code, $type, $file= null, $scale = null, $height = null, $rotate = null, $color = nul…
77 $file Barcode save filename [default: `null`]
96 $file QRcode save filename [default: `null`]
108 Datamatrix::png($code, $file = null, $size = null, $margin = null, $color = null)
110 Datamatrix::svg($code, $file = null, $size = null, $margin = null, $color = null)
114 $file Datamatrix save filename [default: `null`]
125 PDF417::png($code, $file = null, $size = null, $margin = null, $color = null)
127 PDF417::svg($code, $file = null, $size = null, $margin = null, $color = null)
[all …]
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DBarcodeFactory.php283 if ($this->file === null) {
288 preg_match("/\.png$/", $this->file, $output);
292 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
294 … $savePath = dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'tmp'.DIRECTORY_SEPARATOR.$this->file;
296 $savePath = $this->file;
366 if ($this->file != null) {
367 preg_match("/\.svg$/", $this->file, $output);
371 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
373 … $savePath = dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'tmp'.DIRECTORY_SEPARATOR.$this->file;
375 $savePath = $this->file;
H A DDatamatrixFactory.php260 if ($this->file === null) {
265 preg_match("/\.png$/", $this->file, $output);
269 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
271 … $savePath = dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'tmp'.DIRECTORY_SEPARATOR.$this->file;
273 $savePath = $this->file;
328 if ($this->file != null) {
329 preg_match("/\.svg$/", $this->file, $output);
333 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
335 … $savePath = dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'tmp'.DIRECTORY_SEPARATOR.$this->file;
337 $savePath = $this->file;
H A DPDF417Factory.php264 if ($this->file === null) {
269 preg_match("/\.png$/", $this->file, $output);
273 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
275 … $savePath = dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'tmp'.DIRECTORY_SEPARATOR.$this->file;
277 $savePath = $this->file;
332 if ($this->file != null) {
333 preg_match("/\.svg$/", $this->file, $output);
337 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
339 … $savePath = dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'tmp'.DIRECTORY_SEPARATOR.$this->file;
341 $savePath = $this->file;
H A DQRcodeFactory.php312 if ($this->file === null) {
317 preg_match("/\.png$/", $this->file, $output);
321 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
323 … $savePath = dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'tmp'.DIRECTORY_SEPARATOR.$this->file;
325 $savePath = $this->file;
387 if ($this->file != null) {
388 preg_match("/\.svg$/", $this->file, $output);
392 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
394 … $savePath = dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'tmp'.DIRECTORY_SEPARATOR.$this->file;
396 $savePath = $this->file;
/plugin/barcodes/vendor/jucksearm/php-barcode/tests/
H A DBarcodeTest.php54 ->setFile($file)
57 $this->assertTrue(is_file($this->tmpDir.DIRECTORY_SEPARATOR.$file));
59 unlink($this->tmpDir.DIRECTORY_SEPARATOR.$file);
74 ->setFile($file)
77 $this->assertTrue(is_file($this->tmpDir.DIRECTORY_SEPARATOR.$file));
79 unlink($this->tmpDir.DIRECTORY_SEPARATOR.$file);
H A DDatamatrixTest.php49 ->setFile($file)
52 $this->assertTrue(is_file($this->tmpDir.DIRECTORY_SEPARATOR.$file));
54 unlink($this->tmpDir.DIRECTORY_SEPARATOR.$file);
67 ->setFile($file)
70 $this->assertTrue(is_file($this->tmpDir.DIRECTORY_SEPARATOR.$file));
72 unlink($this->tmpDir.DIRECTORY_SEPARATOR.$file);
H A DPDF417Test.php49 ->setFile($file)
52 $this->assertTrue(is_file($this->tmpDir.DIRECTORY_SEPARATOR.$file));
54 unlink($this->tmpDir.DIRECTORY_SEPARATOR.$file);
67 ->setFile($file)
70 $this->assertTrue(is_file($this->tmpDir.DIRECTORY_SEPARATOR.$file));
72 unlink($this->tmpDir.DIRECTORY_SEPARATOR.$file);
H A DQRcodeTest.php51 ->setFile($file)
54 $this->assertTrue(is_file($this->tmpDir.DIRECTORY_SEPARATOR.$file));
56 unlink($this->tmpDir.DIRECTORY_SEPARATOR.$file);
69 ->setFile($file)
72 $this->assertTrue(is_file($this->tmpDir.DIRECTORY_SEPARATOR.$file));
74 unlink($this->tmpDir.DIRECTORY_SEPARATOR.$file);
/plugin/shortcutkey/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A DREADME27 See the COPYING file in your DokuWiki folder for details
/plugin/dir/
H A Dsyntax.php681 function _searchDir(&$data, $base, $file, $type, $level, $opts) { argument
687 return $this->_addFoundPage($data, $ns, pathID($file), $type, $level);
689 if(!preg_match('#\.txt$#', $file))
692 $id = pathID($file);
H A Dmake_tgz.sh22 tar --create -z --verbose --exclude 'manager.dat' --file "${plugin_tgz_file}" "./dir"
28 tar --list --file "${plugin_tgz_file}"

1...<<101102103104105106107108109110>>...140