Home
last modified time | relevance | path

Searched refs:extension (Results 1 – 25 of 481) sorted by relevance

12345678910>>...20

/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/Extension/
DDateTest.php32 $extension = new Twig_Extensions_Extension_Date();
33 $this->assertEquals($expected, $extension->diff($this->env, $date, $now));
38 $extension = new Twig_Extensions_Extension_Date();
39 …$this->assertRegExp('/^[0-9]+ (second|minute|hour|day|month|year)s* ago$/', $extension->diff($this…
47 $extension = new Twig_Extensions_Extension_Date();
48 …$this->assertEquals($expected, $extension->diff($this->env, new DateTime($date), new DateTime($now…
53 $extension = new Twig_Extensions_Extension_Date();
54 …$this->assertRegExp('/^[0-9]+ (second|minute|hour|day|month|year)s* ago$/', $extension->diff($this…
68 $extension = new Twig_Extensions_Extension_Date($translator);
69 $extension->diff($this->env, $date, $now);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DMimeType.php22 * @param string $extension string The file extension.
28 public static function fromExtension($extension) argument
134 $extension = strtolower($extension);
136 return isset($mimetypes[$extension])
137 ? $mimetypes[$extension]
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Test/
DMethod.php25 protected $extension; variable in Twig_Test_Method
28 public function __construct(ExtensionInterface $extension, $method, array $options = []) argument
30 $options['callable'] = [$extension, $method];
34 $this->extension = $extension;
40 …return sprintf('$this->env->getExtension(\'%s\')->%s', \get_class($this->extension), $this->method…
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Function/
DMethod.php28 protected $extension; variable in Twig_Function_Method
31 public function __construct(ExtensionInterface $extension, $method, array $options = []) argument
33 $options['callable'] = [$extension, $method];
37 $this->extension = $extension;
43 …return sprintf('$this->env->getExtension(\'%s\')->%s', \get_class($this->extension), $this->method…
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Filter/
DMethod.php27 protected $extension; variable in Twig_Filter_Method
30 public function __construct(ExtensionInterface $extension, $method, array $options = []) argument
32 $options['callable'] = [$extension, $method];
36 $this->extension = $extension;
42 …return sprintf('$this->env->getExtension(\'%s\')->%s', \get_class($this->extension), $this->method…
/plugin/authfacebook/lib/FileUpload/
DMimetypes.php966 * @param string $extension File extension
970 public function fromExtension($extension) argument
972 $extension = strtolower($extension);
974 return isset($this->mimetypes[$extension]) ? $this->mimetypes[$extension] : null;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GKEHub/
DConfigManagementHierarchyControllerVersion.php25 public $extension; variable in Google\\Service\\GKEHub\\ConfigManagementHierarchyControllerVersion
34 public function setExtension($extension) argument
36 $this->extension = $extension;
43 return $this->extension;
DConfigManagementHierarchyControllerDeploymentState.php25 public $extension; variable in Google\\Service\\GKEHub\\ConfigManagementHierarchyControllerDeploymentState
34 public function setExtension($extension) argument
36 $this->extension = $extension;
43 return $this->extension;
/plugin/orphanmedia2/
Dsyntax.php400 $extension = end($parts);
401 $extension = ltrim($extension, ".");
411 elseif(strpos($defFileTypes, $extension)!==false) {
441 $extension = end($parts);
442 $extension = ltrim($extension, ".");
445 if(($extension === "txt")){
640 $extension = end($parts);
641 $extension = ltrim($extension, ".");
643 if(stristr($defFileTypes, $extension)===false) continue;
659 $extension = end($parts);
[all …]
/plugin/orphanmedia/
Dsyntax.php399 $extension = end($parts);
400 $extension = ltrim($extension, ".");
410 elseif(strpos($defFileTypes, $extension)!==false) {
440 $extension = end($parts);
441 $extension = ltrim($extension, ".");
444 if(($extension === "txt")){
639 $extension = end($parts);
640 $extension = ltrim($extension, ".");
642 if(stristr($defFileTypes, $extension)===false) continue;
658 $extension = end($parts);
[all …]
/plugin/confmanager/configTypes/
DConfigManagerTwoLineLeftImageConfigCascade.php10 protected $extension; variable in ConfigManagerTwoLineLeftImageConfigCascade
18 public function __construct($name, $imageFolder, $extension) { argument
21 $this->extension = explode(',',$extension);
46 foreach($this->extension as $ext){
117 $extension = substr($icon['name'], $extension_position+1);
118 if (!in_array($extension, $this->extension)) {
125 $destination = $this->getImageFilename($key, $value, $upload_name, $extension);
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Loader/
DFilesystemLoader.php30 private $extension = '.mustache'; variable in Mustache_Loader_FilesystemLoader
62 $this->extension = '';
64 $this->extension = '.' . ltrim($options['extension'], '.');
118 if (substr($fileName, 0 - strlen($this->extension)) !== $this->extension) {
119 $fileName .= $this->extension;
/plugin/findologicxmlexport/vendor/twig/twig/doc/
Dinstallation.rst46 Installing the C extension
50 The C extension was added in Twig 1.4.
54 The C extension is **optional** but it brings some nice performance
55 improvements. Note that the extension is not a replacement for the PHP
58 The C extension is only compatible and useful for **PHP5**.
60 Twig comes with a C extension that enhances the performance of the Twig
73 You can also install the C extension via PEAR (note that this method is
85 2. Put Twig's C extension source code into ``C:\php-sdk\phpdev\vcXX\x86\php-source-directory\ext\tw…
96 --enable-twig=shared`` to be able to build the twig C extension for
102 Finally, enable the extension in your ``php.ini`` configuration file:
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Files/
DFileExtensionSniff.php59 $extension = substr($fileName, strrpos($fileName, '.'));
63 $phpcsFile->recordMetric($stackPtr, 'File extension for class files', $extension);
64 if ($extension === '.php') {
70 $phpcsFile->recordMetric($stackPtr, 'File extension for non-class files', $extension);
71 if ($extension === '.inc') {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
Dphar-extension.phpt2 phpunit --configuration tests/_files/phpunit-example-extension
6 $_SERVER['argv'][2] = __DIR__ . '/../_files/phpunit-example-extension';
14 Configuration: %s/phpunit-example-extension/phpunit.xml
15 Extension: %s/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.0.phar
/plugin/docsearch/
Dcron.php58 $extension = array();
60 preg_match('/.([^\.]*)$/', $file, $extension);
63 if(!isset($extension[1])) {
66 $extension = $extension[1];
69 if(!in_array($extension, $conf['docsearchext'])) {
83 $cmd = $conf['docsearch'][$extension];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PaymentsResellerSubscription/
DGoogleCloudPaymentsResellerSubscriptionV1ExtendSubscriptionRequest.php32 public function setExtension(GoogleCloudPaymentsResellerSubscriptionV1Extension $extension) argument
34 $this->extension = $extension;
41 return $this->extension;
/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxProfile.php31 * @param string $extension The path to the xpi extension.
34 public function addExtension($extension) argument
36 $this->extensions[] = $extension;
123 foreach ($this->extensions as $extension) {
124 $this->installExtension($extension, $temp_dir);
186 * @param string $extension The path to the extension.
190 private function installExtension($extension, $profile_dir) argument
193 $this->extractTo($extension, $temp_dir);
217 $this->extractTo($extension, $ext_dir);
/plugin/findologicxmlexport/vendor/twig/twig/src/
DEnvironment.php581 foreach ($this->extensions as $extension) {
582 $r = new \ReflectionObject($extension);
863 foreach ($this->getExtensions() as $name => $extension) {
864 if (!$extension instanceof InitRuntimeInterface) {
865 $m = new \ReflectionMethod($extension, 'initRuntime');
873 $extension->initRuntime($this);
967 public function addExtension(ExtensionInterface $extension) argument
970 … to register extension "%s" as extensions have already been initialized.', $extension->getName()));
973 $class = \get_class($extension);
974 if ($class !== $extension->getName()) {
[all …]
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/
DCHANGELOG.md8 * The C extension now supports PHP 8. Pull request by John Boehr.
17 * The `maxminddb` extension now returns a string when a `uint32`
21 * For `uint64` values, the `maxminddb` extension now returns an
29 * The `maxminddb` extension now has the arginfo when using reflection.
31 * The `maxminddb` extension now provides `MINFO()` function that
32 displays the extension version and the libmaxminddb version. PR by
45 * IMPORTANT: The `maxminddb` extension now obeys `open_basedir`. If
49 upgrading the extension. This does not affect the pure PHP
59 * The `Reader` class for the `maxminddb` extension is no longer final.
86 * The MaxMind DB extension now supports PHP 7. Pull request by John Boehr.
[all …]
/plugin/gdpr/helper/
Dutils.php26 list($extension, $basename) = explode('.', strrev($entry), 2);
27 $extension = strrev($extension);
29 if ($extension !== 'changes') {
/plugin/gtime/gtlib/asn1/tsp/
DTSPTSTInfo.php180 $extension = new X509Extension();
181 $extension->decode($set->getObjectAt($i));
183 array_push($this->extensions, $extension);
186 foreach ($this->extensions as $extension) {
187 if ($extension->isCritical()) {
188 … throw new GTException("Unknown critical extension present: {$extension->getId()}");
251 foreach ($this->extensions as $extension) {
252 $set->add($extension);
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
DWKT.php292 $extension = '';
294 $extension .= 'Z';
297 $extension .= 'M';
299 …return strtoupper($geometry->geometryType()) . ($extension ? ' ' . $extension : '') . ' (' . $data…
348 $extension = '';
350 $extension .= 'Z';
353 $extension .= 'M';
357 . ($extension ? ' ' . $extension : '')
/plugin/zip/pear/File/
DArchive.php398 $extension = '';
400 $extension = substr($file, $dotPos+1);
403 (!File_Archive::isKnownExtension($extension) ||
610 * @param string $extension the checked extension
615 function isKnownExtension($extension) argument
617 return $extension == 'tar' ||
618 $extension == 'zip' ||
619 $extension == 'gz' ||
620 $extension == 'tgz' ||
621 $extension == 'tbz' ||
[all …]
/plugin/scrape/vendor/symfony/css-selector/XPath/
DTranslator.php120 public function registerExtension(Extension\ExtensionInterface $extension): self argument
122 $this->extensions[$extension->getName()] = $extension;
124 … $this->nodeTranslators = array_merge($this->nodeTranslators, $extension->getNodeTranslators());
125 …$this->combinationTranslators = array_merge($this->combinationTranslators, $extension->getCombinat…
126 …$this->functionTranslators = array_merge($this->functionTranslators, $extension->getFunctionTransl…
127 …$this->pseudoClassTranslators = array_merge($this->pseudoClassTranslators, $extension->getPseudoCl…
128 …MatchingTranslators = array_merge($this->attributeMatchingTranslators, $extension->getAttributeMat…

12345678910>>...20