| /template/twigstarter/vendor/twig/twig/src/ |
| D | ExtensionSet.php | 63 foreach ($this->extensions as $extension) { 64 if ($extension instanceof InitRuntimeInterface) { 65 $extension->initRuntime($env); 101 foreach ($extensions as $extension) { 102 $this->addExtension($extension); 130 foreach ($this->extensions as $extension) { 131 $r = new \ReflectionObject($extension); 140 public function addExtension(ExtensionInterface $extension) argument 142 $class = \get_class($extension); 154 $this->extensions[$class] = $extension; [all …]
|
| D | FileExtensionEscapingStrategy.php | 44 $extension = pathinfo($name, \PATHINFO_EXTENSION); 46 switch ($extension) {
|
| /template/bootstrap3/tpl/ |
| D | menu-user.php | 12 use dokuwiki\plugin\extension\Exception as ExtensionException; 13 use dokuwiki\plugin\extension\Local; 14 use dokuwiki\plugin\extension\Repository; 50 foreach ($extensions as $extension) { 51 if ($extension->isEnabled() && $extension->isUpdateAvailable()) { 52 $extensions_update[] = $extension->getDisplayName(); 62 if ($extension = plugin_load('helper', 'extension_extension')) { variable 65 $extension->setExtension($plugin); 66 if ($extension->updateAvailable() && $extension->isEnabled()) { 67 $extensions_update[] = $extension->getDisplayName();
|
| /template/breeze/bower_components/modular-scale/ |
| D | modular-scale.gemspec | 1 # Replace extension with the name of your extension's .rb file 10 # Replace "modular-scale" with the name of your extension 13 # Description of your extension 14 s.description = %q{A generalized Compass extension to build off of} 15 # A summary of your Compass extension. Should be different than Description 17 # The names of the author(s) of the extension. 22 s.email = ["firstlast@extension.com"] 23 # URL of the extension 24 s.homepage = "http://extension.com" 27 # These are the files to be included in your Compass extension. [all …]
|
| /template/strap/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; 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);
|
| /template/strap/ComboStrap/ |
| H A D | FetcherVignette.php | 77 $extension = $this->mime->getExtension(); 230 switch ($extension) { 284 $extension = FileSystems::getMime($imagePath)->getExtension(); 286 switch ($extension) { 336 $extension = substr($vignette, $lastPoint + 1); 343 $this->setMime(Mime::createFromExtension($extension)); 387 $extension = $mime->getExtension(); 388 switch ($extension) { 391 …throw new ExceptionBadArgument("The extension ($extension) is not supported by the GD library", se… 397 …throw new ExceptionBadArgument("The extension ($extension) is not supported by the GD library", se… [all …]
|
| H A D | Snippet.php | 198 …* @param string $extension - {@link Snippet::EXTENSION_CSS css} or {@link Snippet::EXTENSION_JS js} 201 … public static function getOrCreateFromComponentId(string $componentId, string $extension): Snippet argument 204 $snippetPath = self::getInternalPathFromNameAndExtension($componentId, $extension); 481 public static function getInternalPathFromNameAndExtension($name, $extension): WikiPath argument 484 switch ($extension) { 486 $extension = "css"; 488 ->getComponentStylePathByName(strtolower($name) . ".$extension"); 490 $extension = "js"; 494 ->resolve(strtolower($name) . ".$extension"); 496 $message = "Unknown snippet type ($extension)"; [all …]
|
| H A D | PathAbs.php | 16 $extension = pathinfo($this->getLastName(), PATHINFO_EXTENSION); 17 if ($extension === "") { 20 return $extension;
|
| H A D | Mime.php | 69 public static function createFromExtension($extension): Mime argument 71 switch ($extension) { 117 $mimeString = $mtypes[$extension] ?? null; 119 throw new ExceptionNotFound("No mime was found for the extension ($extension)");
|
| H A D | Font.php | 59 $extension = strtolower($path->getExtension()); 60 if ($extension === "ttf") {
|
| H A D | ClassUtility.php | 78 $extension = $child->getExtension(); 82 if($extension!=='php'){
|
| H A D | ThirdMediaLink.php | 41 $extension = FileSystems::getMime($path); 42 $tagAttributes->addClassName("mf_$extension");
|
| H A D | Icon.php | 61 $extension = $mediaDokuPath->getExtension(); 62 if ($extension !== "svg") {
|
| H A D | MarkupRenderer.php | 110 $extension = $this->requestedMime->getExtension(); 111 switch ($extension) {
|
| H A D | LocalPath.php | 193 $extension = pathinfo($this->path, PATHINFO_EXTENSION); 194 if ($extension === "") { 197 return $extension;
|
| H A D | WikiPath.php | 492 $extension = substr($pathAndDrive, $locationLastPoint + 1); 493 if (in_array($extension, WikiPath::ALL_MARKUP_EXTENSIONS)) { 1188 $extension = $this->getExtension(); 1191 $extension = self::MARKUP_DEFAULT_TXT_EXTENSION; 1195 …Site::getPageDirectory()->resolve(utf8_encodeFN($idFileSystem) . '.' . $extension)->toAbsoluteId(); 1197 …ory()->resolve(utf8_encodeFN($idFileSystem) . '.' . $this->rev . '.' . $extension)->toAbsoluteId();
|
| /template/strap/ |
| H A D | cli.php | 617 foreach ($extensions as $extension) { 618 if ($extension->isEnabled() && $extension->isUpdateAvailable()) { 619 echo "The extension {$extension->getDisplayName()} should be updated"; 630 $extension = $this->loadHelper('extension_extension'); 636 $extension->setExtension($name); 638 if ($extension->updateAvailable()) {
|
| /template/twigstarter/vendor/twig/twig/ |
| D | CHANGELOG | 94 * fixed Symfony 5.0 support for the HTML extra extension 95 * fixed number formatter in Intl extra extension when using a formatter prototype 103 * added the String extension in the "extra" repositories: "u" filter 109 * added the CssInliner extension in the "extra" repositories: "inline_css" 111 * added the Inky extension in the "extra" repositories: "inky_to_html" filter 112 * added Intl extension in the "extra" repositories: "country_name", 117 * added the Markdown extension in the "extra" repositories: "markdown_to_html", 119 * added the HtmlExtension extension in the "extra" repositories: "date_uri" 273 * fixed the error handling for the optimized extension-based function calls 296 * optimized the performance of calling an extension method at runtime [all …]
|
| /template/twigstarter/vendor/symfony/polyfill-ctype/ |
| D | README.md | 4 …s component provides `ctype_*` functions to users who run php versions without the ctype extension.
|
| /template/strap/vendor/symfony/polyfill-ctype/ |
| H A D | README.md | 4 …s component provides `ctype_*` functions to users who run php versions without the ctype extension.
|
| /template/twigstarter/vendor/symfony/polyfill-mbstring/ |
| D | README.md | 5 [Mbstring](https://php.net/mbstring) extension.
|
| /template/strap/vendor/symfony/polyfill-mbstring/ |
| H A D | README.md | 5 [Mbstring](https://php.net/mbstring) extension.
|
| /template/mnml-blog/user/ |
| D | screen.css.dist | 7 Just remove the ".dist" extension to use them.
|
| /template/monobook/user/ |
| D | screen.css.dist | 7 Just remove the ".dist" extension to use them.
|
| /template/vector/user/ |
| D | print.css.dist | 7 Just remove the ".dist" extension to use them.
|