Home
last modified time | relevance | path

Searched refs:file (Results 251 – 275 of 3491) sorted by last modified time

1...<<11121314151617181920>>...140

/plugin/dw2pdf/_test/
H A DGeneralTest.php21 $file = __DIR__ . '/../plugin.info.txt';
22 $this->assertFileExists($file);
24 $info = confToHash($file);
/plugin/dw2pdf/vendor/mpdf/mpdf/ttfonts/
H A DTaameyDavidCLM-LICENSE.txt2 version 2 (see file GNU-GPL).
/plugin/dw2pdf/
H A Dcomposer.lock3 "This file locks the dependencies of your project to a known state",
5 "This file is @generated automatically"
H A Daction.php60 * Return the value of currentBookChapter, which is the order of the file to be added in a book generation
134 // deliver the file
381 $file = wikiFN($id, $rev);
383 if (!file_exists($file)) {
394 $ret = p_render('dw2pdf', p_get_instructions(io_readWikiPage($file, $id, $rev)), $info, $date_at);
396 $ret = p_cached_output($file, 'dw2pdf', $id);
531 //file doesn't exists
567 // write to cache file
584 if ($outputTarget === 'file') {
593 //try to send file, an
[all...]
/plugin/dw2pdf/vendor/composer/
H A DClassLoader.php4 * This file is part of Composer.
10 * file that was distributed with this source code.
425 if ($file = $this->findFile($class)) {
427 $includeFile($file);
436 * Finds the path to the file where the class is defined.
452 $file = apcu_fetch($this->apcuPrefix.$class, $hit);
454 return $file;
458 $file = $this->findFileWithExtension($class, '.php');
461 if (false === $file && defined('HHVM_VERSION')) {
462 $file
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DCHANGELOG.md79 * Allow passing file content or file path to `SetAssociatedFiles` (#558)
109 - ICC profile is loaded as entire path to file (to prevent a need to write inside vendor directory)
171 - Availability to set custom default CSS file
172 - Availability to set custom hyphenation dictionary file
240 - Fixed output file name for `D` and `I` output modes (issue #105, f297546)
292 - SVG images now can use Autofont (see top of `classes/svg.php` file)
293 - SVG images now has limited support for CSS classes (see top of `classes/svg.php` file)
301 - SVG images - support automatic font selection and (minimal) use of CSS classes - cf. the defined constants at top of svg.php file
410 - temporary file nam
[all...]
H A DCREDITS.txt14 * HTML2FPDF is a php script to read a HTML text and generate a PDF file. *
55 // you may not use this file except in compliance with the License.
/plugin/dw2pdf/vendor/setasign/fpdi/
H A DREADME.md22 composer.json file. You need to add the dependency to the PDF generation library of your choice
25 To use FPDI with FPDF include following in your composer.json file:
82 - Support for documents with "invalid" data before their file-header
90 - You need to load the code using the `src/autoload.php` file instead of `classes/FPDI.php`.
122 // set the source file
/plugin/dw2pdf/vendor/setasign/fpdi/src/
H A DFpdiTrait.php3 * This file is part of FPDI
92 * Release resources and file handles.
141 * Get an unique reader id by the $file parameter.
143 * @param string|resource|PdfReader|StreamReader $file An open file descriptor, a path to a file, a PdfReader
147 protected function getPdfReaderId($file) argument
149 if (\is_resource($file)) {
150 $id = (string) $file;
151 } elseif (\is_string($file)) {
209 setSourceFile($file) global() argument
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/data/
H A Dout.php28 throw new MpdfException('Some data has already been output to browser, can\'t send PDF file');
60 while (false !== ($file = readdir($handle))) { variable
61 if (((filemtime($path.$file)+$interval) < time()) && ($file != "..") && ($file != ".") && substr($file, -3)=='pdf') {
62 unlink($path.$file);
/plugin/dw2pdf/vendor/mpdf/qrcode/
H A DLICENSE66 a header file that is part of the Library. You may convey such object
/plugin/dw2pdf/tpl/default/
H A DREADME.txt13 first page of a document. If a file is does not exist the next more generic
63 Custom stylings can be provided in the following file of your dw2pdf-template folder:
/plugin/combo/ComboStrap/
H A DLocalFileSystem.php12 // same as the uri: ie local file os system
13 public const SCHEME = "file";
36 * @throws ExceptionNotFound - if the file does not exist
54 // file does not exists
55 throw new ExceptionNotFound("The file ($path) does not exists");
63 * @throws ExceptionNotFound - if the file does not exist
68 throw new ExceptionNotFound("Local File System Modified Time: The file ($path) does not exist");
95 throw new ExceptionFileSystem("Unable to delete the file ($absolutePath)");
127 * @param string|null $type container / leaf (ie directory / file or namespace/page)
165 LogUtility::internalError("The type of file (
[all...]
H A DBootstrap.php6 * COPYING file in the root directory of this source tree.
153 LogUtility::internalError("An error has occurred reading the file ($stylesheetsFile). Error:{$e->getMessage()}", self::CANONICAL);
172 // user file does not exists and that's okay
272 throw new ExceptionRuntimeInternal("Unable to read the file {$bootstrapJsonFile} as json.", self::CANONICAL, 1, $e);
275 throw new ExceptionRuntimeInternal("The bootstrap version ($version) could not be found in the file $bootstrapJsonFile");
284 $fileNameWithExtension = $script["file"];
285 $file = LocalPath::createFromPathString($fileNameWithExtension);
304 $extension = $file->getExtension();
306 LogUtility::internalError("No extension was found on the file metadata ($fileNameWithExtension) from the bootstrap dictionary", self::CANONICAL);
392 * @return array - the stylesheet meta (file, ur
[all...]
H A DLogUtility.php6 * COPYING file in the root directory of this source tree.
94 * Log level passed for a page (only for file used)
116 * Print log to a file
155 $file = $conf['cachedir'] . '/debug.log';
156 $fh = fopen($file, 'a');
H A DFetcherSvg.php557 * Return the svg file transformed by the attributes
562 * @throws ExceptionBadSyntax - the file is not a svg file
564 * @throws ExceptionNotFound - the file was not found
570 * Generated svg file cache init
585 foreach ($files as $file) {
586 $fetchCache->addFileDependency($file);
605 * The buster is also based on the configuration file
607 * It the user changes the configuration, the svg file is generated
622 // no local conf file
[all...]
/plugin/combo/vendor/carica/phpcss/
H A D.editorconfig1 # top-most EditorConfig file
4 # Unix-style newlines with a newline ending every file
H A Dcomposer.lock3 "This file locks the dependencies of your project to a known state",
5 "This file is @generated automatically"
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DLocalFileDetector.php8 * @param string $file
12 public function getLocalFile($file) argument
14 if (is_file($file)) {
15 return realpath($file);
/plugin/combo/action/
H A Dcss.php23 * * tseed is md5 of modified time of the below config file set at {@link tpl_metaheaders()}
99 * * With CSS_STYLES_INCLUDED, you choose the file that you want
107 * Add property to the css URL to create multiple CSS file:
250 foreach ($files as $file => $fileDirectory) {
275 if (strpos($file, 'lib/plugins/' . $plugin)) {
281 $filteredDataFiles[$file] = $fileDirectory;
296 // Interwiki styles are here, we keep (in the lib/css.php file)
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/Loader/
H A DFilesystemLoader.php93 * Helper function for loading a Handlebars file by name.
97 * @throws \InvalidArgumentException if a template file is not found.
112 * Helper function for getting a Handlebars template file name.
116 * @return string Template file name
123 $file = array_pop($fileParts);
125 if (substr($file, strlen($this->_prefix)) !== $this->_prefix) {
126 $file = $this->_prefix . $file;
129 $fileParts[] = $file;
/plugin/combo/vendor/salesforce/handlebars-php/tests/Handlebars/
H A DHandlebarsTest.php436 foreach ($files as $file) {
437 (is_dir("$dir/$file")) ? delTree("$dir/$file") : unlink("$dir/$file");
/plugin/combo/db/combo-secondary/
H A DREADME.md8 * Create a file `updateXXXXX.sql` where `XXXXX` = `XXXX+1`
9 * Bump the version number in the file [latest.version](latest.version)
/plugin/combo/
H A Ddeleted.files168 syntax/file.php
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php4 * This file is part of the Symfony package.
9 * file that was distributed with this source code.
842 private static function getData($file) argument
844 if (file_exists($file = __DIR__.'/Resources/unidata/'.$file.'.php')) {
845 return require $file;

1...<<11121314151617181920>>...140