Home
last modified time | relevance | path

Searched refs:extension (Results 76 – 100 of 369) sorted by relevance

12345678910>>...15

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/phar/
H A Dphar-sample.phar81 if (!isset($b['extension'])) {
87 if (isset($mimes[$b['extension']])) {
88 if ($mimes[$b['extension']] === 1) {
92 if ($mimes[$b['extension']] === 2) {
96 header('Content-Type: ' .$mimes[$b['extension']]);
140 die('Error: zlib extension is not enabled -' .
147 die('Error: bzip2 extension is not enabled -' .
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php184 * @param string $extension file extension
188 function IsImageValid( $filePath, $extension ) argument
216 if ( !in_array( $extension, $imageCheckExtensions ) ) {
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php184 * @param string $extension file extension
188 function IsImageValid( $filePath, $extension ) argument
216 if ( !in_array( $extension, $imageCheckExtensions ) ) {
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php184 * @param string $extension file extension
188 function IsImageValid( $filePath, $extension ) argument
216 if ( !in_array( $extension, $imageCheckExtensions ) ) {
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Di18n.rst7 The ``i18n`` extension adds `gettext`_ support to Twig. It defines one tag,
12 You need to register this extension before using the ``trans`` block::
16 Note that you must configure the ``gettext`` extension before rendering any
33 The ``i18n`` extension only works if the PHP `gettext`_ extension is
137 If you use the Twig I18n extension, you will probably need to extract the
H A Ddate.rst4 The *Date* extension provides the ``time_diff`` filter.
6 You need to register this extension before using the ``time_diff`` filter::
/plugin/confmanager/lang/en/
H A Dmime.txt1 …igured through the ''conf/mime.conf'' file. It also configures the file extension <-> mimetype ass…
9 You can find any file extension with it's mime at http://filext.com/
/plugin/docsearch/lang/en/
H A Dconfmanager_description.txt6 Place the file extension in the Key column and the convert tool in the right.
7 When a file with the specific extension is found the according tool will be used.
/plugin/drawio/
H A Dscript.js297 for (extension in toolbarPossibleExtension) {
298 listExt[extension] = {
301 icon : "../../plugins/drawio/icon_" + toolbarPossibleExtension[extension] + ".png" ,
302 … open : "{{drawio>" + getImageName() + "." + toolbarPossibleExtension[extension] + "}}",
/plugin/docsearch/lang/fr/
H A Dconfmanager_description.txt6 Placez l'extension de fichier dans la colonne Clé et l'outil de conversion à droite.
7 Lorsqu'un fichier avec l'extension spécifiée est trouvé, l'outil correspondant sera utilisé.
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DConsistency.php247 foreach (['', '.exe'] as $extension) {
248 if (file_exists($_ = PHP_BINDIR . DS . 'php' . $extension)) {
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ext/
H A Dconfig.m42 [Whether to enable the MaxMind DB Reader extension],
3 [ --with-maxminddb Enable MaxMind DB Reader extension support])
/plugin/advanced/lang/en/config/
H A Dmime.txt3 …l mimetypes should be added in ''mime.local.conf''. The file expects an extension (without the dot…
15 File type icons can be added by placing an image file (PNG or GIF) named after the file extension i…
/plugin/siteexport/action/
H A Dajax.php535 $extension = explode('.', $fileName);
536 $extension = array_pop($extension);
539 …$dirname . '/' . $this->functions->cleanID($this->functions->getSiteTitle($ID)) . '.' . $extension;
627 $extension = explode(';', $http->resp_headers['content-type'], 2);
628 $extension = array_shift($extension);
629 $extension = explode('/', $extension, 2);
630 if ( $extension[0] == 'image' && preg_match("/^[a-zA-Z0-9]{3,}$/", $extension[1]) ) {
631 $extension = strtolower($extension[1]);
632 $this->functions->debug->message("Found new image extension:", $extension, 2);
634 unset($extension);
[all …]
/plugin/diagramsnet/lib/math/extensions/a11y/
H A Daccessibility-menu.js56 extension: null,
58 … this.option = e, this.name = [ t.replace(/ /g, ""), t ], this.module = n, this.extension = i,
75 var t = MathJax.Extension[this.extension];
/plugin/swiftmail/Swift/Connection/
H A DMulti.php143 public function setExtension($extension, $attributes=array()) argument
145 $this->connections[$this->active]->setExtension($extension, $attributes);
/plugin/advanced/lang/fr/config/
H A Dmime.txt3 …tre ajoutés dans le fichier ''mime.local.conf''. On y indique alors une extension (sans le point) …
15 …nt être ajoutées dans le répertoire ''lib/images/fileicons/'' avec pour nom l'extension du fichier.
/plugin/combo/ComboStrap/
H A DIcon.php56 * If the name have an extension, it's a file from the media directory
61 $extension = $mediaDokuPath->getExtension();
62 if ($extension !== "svg") {
63 throw new ExceptionBadArgument("The extension of the icon ($name) is not `svg`", Icon::ICON_CANONICAL_NAME);
68 $message = "The svg icon file ($mediaDokuPath) does not exists. If you want an icon from an icon library, indicate a name without extension.";
80 * No file extension
/plugin/fedauth/Auth/OpenID/
H A DBigMath.php368 foreach ($exts as $extension) {
369 if (extension_loaded($extension['extension'])) {
370 return $extension;
/plugin/findologicxmlexport/vendor/jms/metadata/src/Driver/
H A DAdvancedFileLocatorInterface.php18 public function findAllClasses(string $extension): array; argument
H A DFileLocatorInterface.php9 public function findFileForClass(\ReflectionClass $class, string $extension): ?string; argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DTest.php255 foreach ($required['extensions'] as $extension) {
256 if (isset($required['extension_versions'][$extension])) {
259 if (!extension_loaded($extension)) {
260 $missing[] = sprintf('Extension %s is required.', $extension);
266 foreach ($required['extension_versions'] as $extension => $required) {
267 $actualVersion = phpversion($extension);
271 …$missing[] = sprintf('Extension %s %s %s is required.', $extension, $operator, $required['version'…
/plugin/extendpage/
H A DREADME.md18 in the first column with a page to be used as extension in the third column.
20 Use the "Position" option to specify if the extension should be prepended or
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG148 * fixed C89 compat for the C extension
342 * fixed memory leaks in the C extension
428 * fixed the C extension compilation on Windows
432 * fixed a crash of the C extension on an edge case
437 * fixed crashes of the C extension on some edge cases
522 * fixed C extension compilation on Windows
618 * fixed Twig C extension
849 * made the Escaper extension enabled by default
935 * added a sandbox tag in the sandbox extension
957 * added support for gettext via the `i18n` extension
[all …]
/plugin/judge/
H A Daction.php283 $extension = $this->loadHelper('judge_numbers');
284 $answer = $extension->parseNumber(rawWiki("داوری:" . $problem_name));
285 if ($answer == $extension->parseNumber($user_output)) {

12345678910>>...15