Home
last modified time | relevance | path

Searched refs:name (Results 401 – 425 of 8094) sorted by last modified time

1...<<11121314151617181920>>...324

/plugin/combo/ComboStrap/
H A DDictionary.php13 public static function getFrom(string $name): array argument
15 $path = DirectoryLayout::getComboDictionaryDirectory()->resolve("$name.json");
H A DMetaManagerForm.php114 $name = $this->page->getPathObject()->toAbsoluteId();
115 $formMeta = FormMeta::create($name)
H A DExecutionContext.php560 public function getRuntimeBoolean(string $name): bool
562 $var = $this->executionScopedVariables[$name] ?? null;
564 throw new ExceptionNotFound("No $name runtime env was found");
618 * Dokuwiki handler name
551 getRuntimeBoolean(string $name) global() argument
H A DFileSystems.php208 public static function closest(Path $path, string $name): Path argument
213 return LocalFileSystem::getOrCreate()->closest($path, $name);
215 return WikiFileSystem::getOrCreate()->closest($path, $name);
H A DPanelTag.php190 $name = IdManager::getOrCreate()->generateNewHtmlIdForComponent(PanelTag::PANEL_LOGICAL_MARKUP);
191 EditButtonManager::getOrCreate()->createAndAddEditButtonToStack($name, $position);
H A DPluginUtility.php34 * The name of the hidden/private namespace
57 * @var string - the plugin base name (ie the directory)
65 * The name of the template plugin
77 * The plugin name
126 * A mode is just a name for a class
136 * This pattern allows space after the tag name
162 * Take an array where the key is the attribute name
165 * The attribute name and value are escaped
204 // * name may be alone (ie true boolean attribute)
205 // * a name ma
497 getPropertyValue($name, $default = null) global() argument
1056 getModeFromPluginName($name) global() argument
[all...]
H A DHttp.php23 public static function getFirstHeader(string $name, array $headers = null): string argument
26 $result = self::getHeadersForName($name, $headers);
29 throw new ExceptionNotFound("No header was found with the header name $name");
80 public static function getHeadersForName(string $name, ?array $headers): array argument
87 $headerNameNormalized = trim(strtolower($name));
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/
H A DToken.php125 * @param string $name
129 public function __get(string $name) { argument
130 switch ($name) {
146 * @param string $name
149 public function __isset(string $name): bool { argument
150 switch ($name) {
163 * @param string $name
168 public function __set(string $name, $value): void { argument
/plugin/combo/vendor/antlr/antlr4-php-runtime/
H A DREADME.md135 root directory name is the all-lowercase name of the language parsed by the grammar.
/plugin/combo/
H A Dcli.php53 * set animal=animal-directory-name
104 Animal: If you want to use it for an animal farm, you need to set first the animal directory name in a environment variable
106 animal=animal-directory-name php ./bin/plugin.php combo
131 "The http host name of your server. This value is used by dokuwiki in the rendering cache key",
189 fwrite(STDERR, "The host name is mandatory");
217 * self::EXTENSION_REPOSITORY_API.'?fmt=php&ext[]='.urlencode($name)
218 * `http://www.dokuwiki.org/lib/plugins/pluginrepo/api.php?fmt=php&ext[]=`.urlencode($name)
223 foreach ($pluginList as $name) {
224 $extension->setExtension($name);
226 echo "The extension $name shoul
[all...]
H A Dcomposer.lock10 "name": "antlr/antlr4-php-runtime",
61 "name": "carica/phpcss",
92 "name": "Thomas Weinert",
104 "name": "dragonmantank/cron-expression",
135 "name": "Michael Dowling",
151 "name": "hidehalo/nanoid-php",
189 "name": "hidehalo",
208 "name": "paragonie/random_compat",
238 "name": "Paragon Initiative Enterprises",
258 "name"
[all...]
/plugin/combo/ComboStrap/Meta/Form/
H A DFormMeta.php34 private $name; variable in ComboStrap\\Meta\\Form\\FormMeta
52 public function __construct($name) argument
54 Html::validNameGuard($name);
55 $this->name = $name;
59 public static function create($name): FormMeta argument
61 return new FormMeta($name);
H A DFormMetaField.php60 private $name; variable in ComboStrap\\Meta\\Form\\FormMetaField
105 * The name is mandatory
108 public function __construct($name, $type) argument
110 $this->name = $name;
111 $this->label = ucfirst($name);
112 $this->description = $name;
120 public static function create(string $name, string $type): FormMetaField argument
122 return new FormMetaField($name, $type);
221 LogUtility::internalError("The persistence name (colum
[all...]
H A DFormMetaTab.php9 private $name; variable in ComboStrap\\Meta\\Form\\FormMetaTab
29 $this->name = $tabName;
59 return $this->name;
64 $array["name"]= $this->name;
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/Cache/
H A DAPC.php21 * Get cache for $name if exist.
23 * @param string $name Cache id
27 public function get($name) argument
29 if (apc_exists($name)) {
30 return apc_fetch($name);
38 * @param string $name cache id
43 public function set($name, $value) argument
45 apc_store($name, $value);
51 * @param string $name Cache id
55 public function remove($name) argument
[all...]
H A DDisk.php61 * @param string $name Name of the cache item
65 private function getPath($name) argument
68 $this->prefix . $name . $this->suffix;
72 * Get cache for $name if it exists.
74 * @param string $name Cache id
78 public function get($name) argument
80 $path = $this->getPath($name);
89 * @param string $name cache id
94 public function set($name, $value) argument
96 $path = $this->getPath($name);
108 remove($name) global() argument
[all...]
H A DDummy.php23 * Get cache for $name if exist.
25 * @param string $name Cache id
29 public function get($name) argument
31 if (array_key_exists($name, $this->cache)) {
32 return $this->cache[$name];
40 * @param string $name cache id
45 public function set($name, $value) argument
47 $this->cache[$name] = $value;
53 * @param string $name Cache id
57 public function remove($name) argument
[all...]
/plugin/combo/ComboStrap/Meta/Store/
H A DMetadataDbStore.php291 public function getFromName(string $name, $default = null) argument
300 $value = $row->getFromRow($name);
307 public function setFromPersistentName(string $name, $value, $default = null) argument
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DCache.php22 * Get cache for $name if exist.
24 * @param string $name Cache id
28 public function get($name); argument
33 * @param string $name cache id
38 public function set($name, $value); argument
43 * @param string $name Cache id
47 public function remove($name); argument
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DAbstractWebDriverCheckboxOrRadio.php22 protected $name; variable in Facebook\\WebDriver\\AbstractWebDriverCheckboxOrRadio
31 $this->name = $element->getAttribute('name');
32 if ($this->name === null) {
33 throw new WebDriverException('The input does not have a "name" attribute.');
188 * Gets checkboxes or radio buttons with the same name.
203 sprintf('.//input[@name = %s%s]', XPathEscaper::escapeQuotes($this->name), $valueSelector)
211 '//form[@id = %1$s]//input[@name = %2$s%3$s'
213 . ' | //input[@form = %1$s and @name
[all...]
H A DCookie.php20 * @param string $name The name of the cookie; may not be null or an empty string.
23 public function __construct($name, $value) argument
25 $this->validateCookieName($name);
28 $this->cookie['name'] = $name;
33 * @param array $cookieArray The cookie fields; must contain name and value.
38 if (!isset($cookieArray['name'])) {
39 throw new InvalidArgumentException('Cookie name should be set');
44 $cookie = new self($cookieArray['name'],
258 validateCookieName($name) global() argument
[all...]
/plugin/combo/vendor/symfony/polyfill-php80/
H A DPhpToken.php51 if ('UNKNOWN' === $name = token_name($this->id)) {
52 $name = \strlen($this->text) > 1 || \ord($this->text) < 32 ? null : $this->text;
55 return $name;
/plugin/combo/vendor/php-webdriver/webdriver/lib/Chrome/
H A DChromeOptions.php110 * @param string $name
114 public function setExperimentalOption($name, $value) argument
116 $this->experimentalOptions[$name] = $value;
/plugin/combo/resources/brand/twitter/
H A Doutline.svg1 <svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 24 24"><path d="M22.99121,3.9502a.99942.99942,0,0,0-1.51074-.85938,7.47956, (…)
/plugin/combo/vendor/symfony/process/Pipes/
H A DWindowsPipes.php55 foreach ($pipes as $pipe => $name) {
56 $file = sprintf('%s\\sf_proc_%02X.%s', $tmpDir, $i, $name);

1...<<11121314151617181920>>...324