/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/Extension/ |
H A D | DateTest.php | 32 $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/ |
H A D | MimeType.php | 22 * @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/Function/ |
H A D | Method.php | 28 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/ |
H A D | Method.php | 27 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/findologicxmlexport/vendor/twig/twig/lib/Twig/Test/ |
H A D | Method.php | 25 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/authfacebook/lib/FileUpload/ |
H A D | Mimetypes.php | 966 * @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/ |
H A D | ConfigManagementHierarchyControllerDeploymentState.php | 25 public $extension; variable in Google\\Service\\GKEHub\\ConfigManagementHierarchyControllerDeploymentState 34 public function setExtension($extension) argument 36 $this->extension = $extension; 43 return $this->extension;
|
H A D | ConfigManagementHierarchyControllerVersion.php | 25 public $extension; variable in Google\\Service\\GKEHub\\ConfigManagementHierarchyControllerVersion 34 public function setExtension($extension) argument 36 $this->extension = $extension; 43 return $this->extension;
|
/plugin/confmanager/configTypes/ |
H A D | ConfigManagerTwoLineLeftImageConfigCascade.php | 10 protected $extension; variable in ConfigManagerTwoLineLeftImageConfigCascade 16 * @param $extension 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); [all...] |
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Loader/ |
H A D | FilesystemLoader.php | 30 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/orphanmedia/ |
H A D | syntax.php | 400 $extension = ltrim($extension, "."); 441 $extension = ltrim($extension, "."); 639 $extension = end($parts); 640 $extension = ltrim($extension, "."); 658 $extension = end($parts); 659 $extension = ltrim($extension, "."); 680 $extension = end($parts); 681 $extension = ltrim($extension, "."); 702 $extension = end($parts); 703 $extension = ltrim($extension, "."); [all …]
|
/plugin/orphanmedia2/ |
H A D | syntax.php | 401 $extension = ltrim($extension, "."); 442 $extension = ltrim($extension, "."); 640 $extension = end($parts); 641 $extension = ltrim($extension, "."); 659 $extension = end($parts); 660 $extension = ltrim($extension, "."); 681 $extension = end($parts); 682 $extension = ltrim($extension, "."); 703 $extension = end($parts); 704 $extension = ltrim($extension, "."); [all …]
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Files/ |
H A D | FileExtensionSniff.php | 59 $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/ |
H A D | phar-extension.phpt | 2 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/findologicxmlexport/vendor/twig/twig/doc/ |
H A D | installation.rst | 46 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 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: 106 extension=twig.so #For Unix systems 107 extension=php_twig.dll #For Windows systems [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PaymentsResellerSubscription/ |
H A D | GoogleCloudPaymentsResellerSubscriptionV1ExtendSubscriptionRequest.php | 32 public function setExtension(GoogleCloudPaymentsResellerSubscriptionV1Extension $extension) argument 34 $this->extension = $extension; 41 return $this->extension;
|
/plugin/docsearch/ |
H A D | cron.php | 58 $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/gdpr/helper/ |
H A D | utils.php | 26 list($extension, $basename) = explode('.', strrev($entry), 2); 27 $extension = strrev($extension); 29 if ($extension !== 'changes') {
|
/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/ |
H A D | FirefoxProfile.php | 31 * @param string $extension The path to the xpi extension. 34 public function addExtension($extension) argument 36 $this->extensions[] = $extension; 42 * @param string $extension_datas The path to the folder containing the datas to add to the extension 123 foreach ($this->extensions as $extension) { 124 $this->installExtension($extension, $temp_dir); 151 // Intentionally do not use `tempnam()`, as it creates empty file which zip extension may not handle. 186 * @param string $extension The path to the extension 190 installExtension($extension, $profile_dir) global() argument [all...] |
/plugin/findologicxmlexport/vendor/twig/twig/src/ |
H A D | Environment.php | 581 foreach ($this->extensions as $extension) { 873 $extension->initRuntime($this); 973 $class = \get_class($extension); 974 if ($class !== $extension->getName()) { 982 $this->extensionsByClass[$class] = $extension; 983 $this->extensions[$extension->getName()] = $extension; 1030 foreach ($extensions as $extension) { 1031 $this->addExtension($extension); 1512 $extGlob = $extension->getGlobals(); 1542 foreach ($this->extensions as $extension) { [all …]
|
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ |
H A D | CHANGELOG.md | 8 * 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 no [all...] |
/plugin/gtime/gtlib/asn1/tsp/ |
H A D | TSPTSTInfo.php | 180 $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/ |
H A D | WKT.php | 292 $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 [all...] |
/plugin/swiftmail/Swift/ |
H A D | ConnectionBase.php | 68 public function getAttributes($extension) argument 70 if ($this->hasExtension($extension)) 72 return $this->extensions[$extension]; 77 …"Unable to locate any attributes for the extension '" . $extension . "' since the extension cannot…
|
/plugin/dlcounter/ |
H A D | action.php | 46 $extension = str_replace(' ', '', strtolower($this->getConf('extensions')) ); 47 $extension = explode( ",", $extension ); 50 if( in_array( strtolower($data['ext']), $extension ) ){
|