Home
last modified time | relevance | path

Searched refs:filename (Results 251 – 275 of 756) sorted by path

1...<<11121314151617181920>>...31

/plugin/fileshare/
H A Dfilesharedownload.php4 $filename =$_GET['file']; variable
7 $downloadFile = $archivRootDir . '/' . $filename;
9 header ( "Content-Type: ". get_mime_type($filename) );
10 header ( "Content-Disposition: attachment; filename=" . $filename );
17 function get_mime_type($filename) { argument
18 $idx = explode( '.', $filename );
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DCachedReader.php238 $filename = $class->getFileName();
242 [$filename ? filemtime($filename) : 0],
H A DFileCacheReader.php115 && (false !== $filename = $class->getFileName())
116 && filemtime($path) < filemtime($filename)) {
150 && (false !== $filename = $class->getFilename())
151 && filemtime($path) < filemtime($filename)) {
185 && (false !== $filename = $class->getFilename())
186 && filemtime($path) < filemtime($filename)) {
H A DPhpParser.php45 if (false === $filename = $class->getFileName()) {
49 $content = $this->getFileContent($filename, $class->getStartLine());
67 * @param string $filename The name of the file to load.
72 private function getFileContent($filename, $lineNumber) argument
74 if ( ! is_file($filename)) {
80 $file = new SplFileObject($filename);
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DAutoloader.php137 * @param string $filename File name.
140 public function requireFile($filename) argument
142 if (false === file_exists($filename)) {
146 require $filename;
/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DAutoloader.php229 $filename = 'hoa://Test/Vfs/Foo?type=file',
231 file_put_contents($filename, '<?php define("' . $constantName . '", "BAR");')
233 ->when($result = $autoloader->requireFile($filename))
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DSplFileInfo.php68 * @param string $filename Filename.
71 public function __construct($filename, $relativePath = null) argument
73 parent::__construct($filename);
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Integration/Filter/
H A DFilter.php58 file_put_contents($filename, $content),
59 $stream = fopen($filename, 'r'),
77 file_put_contents($filename, $content),
78 $stream = fopen($filename, 'r'),
96 file_put_contents($filename, $content),
97 $stream = fopen($filename, 'r'),
117 file_put_contents($filename, $content),
118 $stream = fopen($filename, 'r'),
138 file_put_contents($filename, $content),
139 $stream = fopen($filename, 'r'),
[all …]
H A DLateComputed.php60 $filename = 'hoa://Test/Vfs/Foo?type=file',
62 file_put_contents($filename, $content),
63 $stream = fopen($filename, 'r')
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md946 - Metadata filename convention added to yml/xml references [\#172](https://github.com/schmittjoh/se…
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/
H A DExampleFinder.php37 $filename = $example->getFilePath();
39 $file = $this->getExampleFileContents($filename);
41 return "** File not found : {$filename} **";
100 * @param string $filename
104 private function getExampleFileContents($filename) argument
109 $exampleFileFromConfig = $this->constructExamplePath($directory, $filename);
117 if (is_readable($this->getExamplePathFromSource($filename))) {
118 $normalizedPath = $this->getExamplePathFromSource($filename);
120 $normalizedPath = $this->getExamplePathFromExampleDirectory($filename);
121 } elseif (is_readable($filename)) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/
H A DCodeCoverage.php637 foreach (array_keys($data) as $filename) {
641 $data[$filename],
656 unset($data[$filename]);
674 unset($data[$filename][$line]);
728 * @param string $filename
736 if (!is_string($filename)) {
744 $this->ignoredLines[$filename] = [];
752 $lines = file($filename);
892 $this->ignoredLines[$filename]
895 sort($this->ignoredLines[$filename]);
[all …]
H A DFilter.php45 * @param string $filename
84 * @param string $filename
88 $filename = realpath($filename);
96 * @param string $filename
100 public function isFile($filename) argument
102 if ($filename == '-' ||
113 return file_exists($filename);
119 * @param string $filename
123 public function isFiltered($filename) argument
125 if (!$this->isFile($filename)) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/tests/
H A DHTMLTest.php90 $filename = $fileInfo->getFilename();
92 $actualFile = $actualFilesPath . DIRECTORY_SEPARATOR . $filename;
99 "${filename} not match"
H A DXMLTest.php86 $filename = $fileInfo->getFilename();
88 $actualFile = $actualFilesPath . DIRECTORY_SEPARATOR . $filename;
95 "${filename} not match"
/plugin/findologicxmlexport/vendor/phpunit/php-file-iterator/src/
H A DIterator.php79 $filename = $current->getFilename();
92 $this->acceptPrefix($filename) &&
93 $this->acceptSuffix($filename);
113 * @param string $filename
117 protected function acceptPrefix($filename) argument
123 * @param string $filename
127 protected function acceptSuffix($filename) argument
133 * @param string $filename
139 protected function acceptSubString($filename, array $subStrings, $type) argument
148 if (($type == self::PREFIX && strpos($filename, $string) === 0) ||
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/
H A DStream.php53 protected $filename; variable in PHP_Token_Stream
108 $this->filename = $sourceCode;
142 return $this->filename;
377 'file' => $this->filename
392 'file' => $this->filename
417 'file' => $this->filename
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/Stream/
H A DCachingFactory.php22 * @param string $filename
26 public static function get($filename) argument
28 if (!isset(self::$cache[$filename])) {
29 self::$cache[$filename] = new PHP_Token_Stream($filename);
32 return self::$cache[$filename];
36 * @param string $filename
38 public static function clear($filename = null) argument
40 if (is_string($filename)) {
41 unset(self::$cache[$filename]);
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/_fixture/
H A Dsource3.php12 foreach ($included_files as $filename) {
13 echo "$filename\n";
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DGenerator.php1310 * @param string $filename
1316 private function getTemplate($filename) argument
1318 if (!isset(self::$templates[$filename])) {
1319 self::$templates[$filename] = new Text_Template($filename);
1322 return self::$templates[$filename];
/plugin/findologicxmlexport/vendor/phpunit/phpunit/
H A DChangeLog-5.7.md19 … later (after the class from above), and the name of that another class does not match its filename
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DPhptTestCase.php19 private $filename; variable in PHPUnit_Extensions_PhptTestCase
55 * @param string $filename
60 public function __construct($filename, $phpUtil = null) argument
62 if (!is_string($filename)) {
66 if (!is_file($filename)) {
70 $filename
75 $this->filename = $filename;
253 return $this->filename;
299 foreach (file($this->filename) as $line) {
397 "'" . dirname($this->filename) . "'",
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DAssert.php847 * @param string $filename
852 if (!is_string($filename)) {
864 * @param string $filename
869 if (!is_string($filename)) {
883 * @param string $filename
888 if (!is_string($filename)) {
900 * @param string $filename
905 if (!is_string($filename)) {
1003 * @param string $filename
1008 if (!is_string($filename)) {
[all …]
H A DTestSuite.php296 * @param string $filename
300 public function addTestFile($filename) argument
302 if (!is_string($filename)) {
306 if (file_exists($filename) && substr($filename, -5) == '.phpt') {
308 new PHPUnit_Extensions_PhptTestCase($filename)
316 $filename = PHPUnit_Util_Fileloader::checkAndLoad($filename);
335 $shortname = basename($filename, '.php');
342 if ($class->getFileName() == $filename) {
392 foreach ($filenames as $filename) {
393 $this->addTestFile((string) $filename);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Assert/
H A DFunctions.php672 * @param string $filename
675 function assertFileExists($filename, $message = '') argument
704 * @param string $filename
707 function assertFileNotExists($filename, $message = '') argument

1...<<11121314151617181920>>...31