Home
last modified time | relevance | path

Searched refs:default (Results 276 – 300 of 1338) sorted by path

1...<<11121314151617181920>>...54

/plugin/codemirror/dist/modes/
H A Dvb.min.js.map1 …", \"csng\", \"cstr\", \"cuint\", \"culng\", \"cushort\", \"declare\", \"default\", \"delegate\", …
H A Dvelocity.min.js.map1 …astTokenWasBuiltin)\n return \"builtin\";\n // default: just a \"word\"\…
H A Dverilog.min.js.map1default defparam design disable \" +\n \"dist do edge else end endcase endchecker endclass endc…
H A Dxquery.min.js.map1 …text', 'copy', 'copy-namespaces', 'count', 'decimal-format', 'declare', 'default', 'delete',\n …
/plugin/codemirror/dist/
H A Dscripts.min.js.map1default text height.\n function textHeight(display) {\n if (display.cachedTextHeight != null) …
H A Dstyles.min.css1default .cm-header,#dokuwiki__content .cm-s-default .cm-header{color:blue}form#dw__editform .cm-s-
H A Dstyles.min.css.map1default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d…
/plugin/codeprettify/code-prettify/
H A DREADME.md107 File extensions supported by default include:
211 default stylesheet, `prettify.css`.
/plugin/codeprettify/code-prettify/styles/
H A Ddoxy.css49 /* print is mostly unchanged from default at present */
/plugin/coinhive/
H A DREADME.md31 … the number of threads for optimal performance. This feature is experimental. The default is false.
33 …he faster WebAssembly version if supported and otherwise fall back to asm.js. The default is false.
/plugin/combo/ComboStrap/
H A DArrayUtility.php79 // By default, the pointer is on the first element
100 * @param array $default
104 public static function mergeByValue(array $default, array $overwrite): array argument
106 return array_merge($default,$overwrite);
H A DCall.php350 default:
402 default:
478 * to override the dokuwiki default
481 * because an image is by default a inline component
527 default:
665 * @param null $default
669 function &getAttribute($key, $default = null)
675 return $default;
885 default:
991 default
667 getAttribute($key, $default = null) global() argument
[all...]
H A DDataType.php74 public static function toIntegerOrDefaultIfNull($targetValue, $default): int argument
77 return $default;
85 * @var string $roundDirection - ceil or floor (by default floor)
H A DExecutionContext.php182 * (in doku.php, the default is `show`,
493 // not that show action is the default even if it's not set
496 // return the default context path (ie the root page)
542 * @param string|null $default
546 public function getConfValue(string $key, string $default = null)
548 return $this->getApp()->getConfig()->getValue($key, $default);
889 * This function sets the default context path.
537 getConfValue(string $key, string $default = null) global() argument
H A DMarkupPath.php183 * default markup path file that were not in any drive
516 LogUtility::internalError("Internal Error: The page ($this) does not have any default title");
936 function getLocale($default = null): ?string argument
940 return $default;
1897 * * or the default context path if the path cannot be transformed as wiki path.
H A DMetadataFormDataStore.php25 public function get(Metadata $metadata, $default = null) argument
46 default:
57 return $default;
H A DMetadataSingleArrayStore.php50 public function get(Metadata $metadata, $default = null) argument
65 return $default;
92 public function getFromName(string $name, $default = null) argument
99 return $default;
102 public function setFromPersistentName(string $name, $value, $default = null) argument
H A DPageImageTag.php16 public const DEFAULT_ATTRIBUTE = "default";
195 default:
225 * Used by svg to color by default with the primary color for instance
298 // then the default one
299 $default = $tagAttributes->getValueAndRemoveIfPresent(PageImageTag::DEFAULT_ATTRIBUTE);
300 if ($default === null) {
303 $defaultOrderOfPreference = explode("|", $default);
H A DPluginUtility.php489 * @param $default
497 static function getPropertyValue($name, $default = null) argument
508 return $default;
568 * @param array $defaultAttributes - the default configuration attributes
707 * Add default border attributes
1063 // https://docs.travis-ci.com/user/environment-variables/#default-environment-variables
1064 // https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
H A DSite.php139 default:
268 * For instance, we set the {@link PageTemplateName::CONF_DEFAULT_NAME default page layout} as {@link PageTemplateName::BLANK_TEMPLATE_VALUE}
269 * in test by default to speed ud test. In a normal environment, the default is {@link PageTemplateName::HOLY_TEMPLATE_VALUE}
692 * @param $default
696 public static function getPrimaryColor(string $default = null): ?ColorRgb argument
703 if ($default === null) {
707 return ColorRgb::createFromString($default);
709 LogUtility::internalError("The value ($default) is not a valid color");
715 public static function getSecondaryColor($default argument
754 getPrimaryColorValue($default = null) global() argument
770 getSecondaryColorValue($default = null) global() argument
[all...]
H A DSiteConfig.php21 * The default font-size for the pages
43 * The default name
83 * should be used otherwise, there is no default
84 * Or best, the default should be also in the code
168 public function getValue(string $key, ?string $default = null, ?string $scope = PluginUtility::PLUGIN_BASE_NAME)
170 return self::getConfValue($key, $default, $scope);
175 * @param int $default - the default value (1=true,0=false in the dokuwiki config system)
178 public function getBooleanValue(string $key, int $default): bool
180 $value = $this->getValue($key, $default);
167 getValue(string $key, string $default = null, string $scope = PluginUtility PLUGIN_BASE_NAME) global() argument
177 getBooleanValue(string $key, int $default) global() argument
[all...]
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataStore.php39 * @param null $default - the default value to return if no data is found
41 public function get(Metadata $metadata, $default = null); argument
49 * @param null $default - the default value to return if no data is found
52 public function getFromName(string $name, $default = null); argument
58 * @param null $default - if the value is equals to the default, the data will not be stored
60 public function setFromPersistentName(string $name, $value, $default = null); argument
/plugin/combo/ComboStrap/Meta/Form/
H A DFormMetaField.php49 public const DEFAULT_VALUE_ATTRIBUTE = "default";
196 // no default row
221 LogUtility::internalError("The persistence name (column name) should be set as key for the default rows");
235 // No rows, show the default rows
239 // no default row ok
395 throw new ExceptionRuntimeInternal("The default value ($defaultValuePlaceholderOrReturned) is not a boolean");
452 default:
487 default:
509 * @param null $default
513 function setValue($value, $default argument
[all...]
/plugin/combo/ComboStrap/Meta/Store/
H A DMetadataDbStore.php67 * and returns the default or null, or empty array
102 public function get(Metadata $metadata, $default = null) argument
291 public function getFromName(string $name, $default = null) argument
296 return $default;
304 return $default;
307 public function setFromPersistentName(string $name, $value, $default = null) argument
H A DMetadataDokuWikiStore.php41 * This is generally where the default data is located
51 * They are used as the default of the current metadata
156 * @param null $default
159 public function get(Metadata $metadata, $default = null) argument
170 return $this->getFromName($metadata->getName(), $default);
183 * @param null $default
186 public function getFromName(string $name, $default = null) argument
205 return $default;
221 * @param null $default
224 public function setFromPersistentName(string $name, $value, $default argument
[all...]

1...<<11121314151617181920>>...54