Home
last modified time | relevance | path

Searched refs:default (Results 151 – 175 of 1338) sorted by last modified time

12345678910>>...54

/plugin/combo/syntax/
H A Dcontentlist.php204 $default = [
208 $attributes = TagAttributes::createFromTagMatch($match, $default, $knownType);
H A Ddisqus.php123 $default = PluginUtility::getTagAttributes($this->getConf(self::CONF_DEFAULT_ATTRIBUTES));
124 $attributes = PluginUtility::mergeAttributes($attributes, $default);
H A Dmenubar.php164 $default[BackgroundAttribute::BACKGROUND_COLOR] = 'light';
165 $default[self::BREAKPOINT_ATTRIBUTE] = "lg";
166 $default[self::THEME_ATTRIBUTE] = "light";
167 $default[self::POSITION] = "normal";
168 $default[ContainerTag::CONTAINER_ATTRIBUTE] = SiteConfig::getConfValue(
172 $tagAttributes = TagAttributes::createFromTagMatch($match, $default);
254 default:
/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/
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 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 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 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.php20 * The default font-size for the pages
42 * The default name
82 * should be used otherwise, there is no default
83 * Or best, the default should be also in the code
167 public function getValue(string $key, ?string $default = null, ?string $scope = PluginUtility::PLUGIN_BASE_NAME) argument
169 return self::getConfValue($key, $default, $scope);
174 * @param int $default - the default value (1=true,0=false in the dokuwiki config system)
177 public function getBooleanValue(string $key, int $default): bool argument
179 $value = $this->getValue($key, $default);
[all...]
H A DTagAttributes.php171 * The default id if no one is specified
262 * @var bool - adding the default class for the logical tag
306 * @param array $defaultAttributes - the default attributes values
398 default:
437 public function getClass($default = null) argument
439 $value = $this->getValue(self::CLASS_KEY, $default);
742 * By default, {@link TagAttributes::addOutputAttributeValue()}
801 * @param null $default
804 public function getValue($attributeName, $default = null) argument
810 return $default;
823 getValueAndRemove($attributeName, $default = null) global() argument
896 getComponentAttributeValue($attributeName, $default = null) global() argument
1132 getValuesAndRemove($attributeName, $default = null) global() argument
1192 getValueAndRemoveIfPresent($attribute, $default = null) global() argument
1261 getBooleanValueAndRemoveIfPresent($attribute, $default = null) global() argument
1269 getBooleanValue($attribute, $default = null) global() argument
1390 getValueAsInteger(string $WIDTH_KEY, int $default = null) global() argument
1438 getValues($attributeName, array $default = null) global() argument
1455 getComponentAttributeValueAndRemoveIfPresent(string $attribute, $default = null) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/
H A DREADME.md93 ParseTreeWalker::default()->walk(new TreeShapeListener(), $tree);
/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...]
/plugin/combo/vendor/dragonmantank/cron-expression/
H A DCHANGELOG.md36 - Only set default timezone if the given $currentTime is not a DateTime instance ([#34](https://github.com/mtdowling/cron-expression/issues/34))
/plugin/combo/vendor/php-webdriver/webdriver/
H A DREADME.md77 Run `geckodriver` binary (it start to listen on port 4444 by default):
/plugin/combo/vendor/symfony/yaml/
H A DCHANGELOG.md236 * Yaml::parse() does not evaluate loaded files as PHP files by default
/plugin/combo/admin/
H A Dpagerules.php301 * An utility function to return the plugin translation or a default value
303 * @param $default
306 private function getLangOrDefault($id, $default) argument
309 return $lang != '' ? $lang : $default;
/plugin/combo/vendor/salesforce/handlebars-php/
H A DREADME.md558 To use a default value if the string is empty: `{{#default title $defaultValue}}`
560 {{#default title 'No title'}}
681 not being backwards compatible, these data variables are disabled by default and must be enabled manually.
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DCommonTokenFactory.php10 * This default implementation of {@see TokenFactory} creates
26 * The default value is `false` to avoid the performance and memory
48 * The default {@see CommonTokenFactory} instance.
53 public static function default() : self function in Antlr\\Antlr4\\Runtime\\CommonTokenFactory
55 static $default;
57 return $default = $default ?? new CommonTokenFactory();
/plugin/combo/vendor/symfony/process/
H A DExecutableFinder.php25 * Replaces default suffixes of executable.
44 * @param string|null $default The default to return if no executable is found
49 public function find(string $name, string $default = null, array $extraDirs = []) argument
84 return $default;
/plugin/combo/vendor/symfony/yaml/Command/
H A DLintCommand.php166 default:
256 $default = function ($directory) {
264 return ($this->directoryIteratorProvider)($directory, $default);
267 return $default($directory);
272 $default = function ($fileOrDirectory) {
277 return ($this->isReadableProvider)($fileOrDirectory, $default);
280 return $default($fileOrDirectory);
/plugin/oauthgeneric/
H A DDotAccess.php18 * @param mixed $default
21 public static function get($array, $key, $default = null) argument
26 return $default;
35 return $array[$key] ?? $default;
41 return $default;
/plugin/data/
H A Dstyle.css1 /* default style for the entry mode */
48 /* default styles for the tag cloud */
81 /* default styles for the related mode */

12345678910>>...54