Home
last modified time | relevance | path

Searched refs:name (Results 326 – 350 of 8094) sorted by last modified time

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

/plugin/combo/ComboStrap/
H A DMarkupPath.php291 $name = $this->getPathObject()->getLastNameWithoutExtension();
296 return in_array($name, $slotNames, true);
306 $name = $this->getPathObject()->getLastNameWithoutExtension();
311 return $name === $slotNames;
322 $name = $this->getPathObject()->getLastNameWithoutExtension();
328 return in_array($name, $slotNames, true);
686 * Get author name
850 // no parent, no last name, etc
2210 // no last name
2275 function resolve(string $name)
2273 resolve(string $name) global() argument
[all...]
H A DCall.php171 * @param $syntaxComponentName - the name of the dokuwiki syntax component (ie plugin_name)
250 * Return the tag name from a call array
254 * * the component name for a plugin
255 * * or the handler name for dokuwiki
260 * This is not the fully qualified component name:
278 * The dokwuiki node name has also the open and close notion
301 * Tag name from class
636 $name = $this->key;
637 if (!empty($name)) {
638 $name
946 setAttribute(string $name, $value) global() argument
953 setPluginData(string $name, $value) global() argument
[all...]
H A DColorRgb.php215 // the value is a bootstrap name
220 const VALUE_TYPE_CSS_NAME = "css-name";
221 const VALUE_TYPE_UNKNOWN_NAME = "unknown-name";
253 * The color name
256 * * a css name
260 private $name; variable in ComboStrap\\ColorRgb
527 return strtolower(self::CSS_COLOR_NAMES[$this->name]);
577 return $this->name;
582 $colorValue = "bs-" . $this->name;
585 $colorValue = $this->name;
837 setName(string $name) global() argument
[all...]
H A DMetadataSingleArrayStore.php57 foreach ($metadata::getOldPersistentNames() as $name) {
58 $value = $this->data[$name] ?? null;
61 unset($this->data[$name]);
92 public function getFromName(string $name, $default = null) argument
95 $value = $this->data[$name] ?? null;
102 public function setFromPersistentName(string $name, $value, $default = null) argument
104 $actualValue = $this->data[$name] ?? null;
109 $name = $this->toNormalizedKey($name);
112 unset($this->data[$name]);
120 hasProperty(string $name) global() argument
[all...]
H A DMetadataStoreTransfer.php85 * Take old name or renaming into account
91 $name = $originalMetaKey;
93 $name = $metadataObject::getName();
100 if (in_array($name, Metadata::NOT_MODIFIABLE_METAS)) {
101 $this->messages[] = Message::createWarningMessage("The metadata ($name) is a protected metadata and cannot be modified")
128 $this->metadatasThatMayBeStored[$name] = $metadataObject;
206 * @return Metadata[] - an array where the key is the name and the value a {@link Metadata} object
H A DFetcherRailBar.php341 $name = SiteConfig::getConfValue(self::CONF_BREAKPOINT_RAIL_BAR, Breakpoint::BREAKPOINT_LARGE_NAME);
342 return Breakpoint::createFromLongName($name);
H A DFetcherSvg.php24 * * the {@link FetcherSvg::setRequestedName() name} if this is an {@link FetcherSvg::setRequestedType() icon type}, the original path is then determined on {@link FetcherSvg::getSourcePath() get}
101 public const REQUESTED_NAME_ATTRIBUTE = "name";
121 public const NAME_ATTRIBUTE = "name";
122 public const DATA_NAME_HTML_ATTRIBUTE = "data-name";
135 private string $name; variable in ComboStrap\\FetcherSvg
165 * @param string $name - a name identifier (used in diff)
169 public static function createSvgFromMarkup(string $markup, string $name): FetcherSvg argument
171 return self::createSvgEmpty()->setMarkup($markup, $name);
295 $name
711 setRequestedName(string $name) global() argument
814 setMarkup(string $markup, string $name) global() argument
[all...]
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Selector/Simple/
H A DType.php12 public function __construct(string $name, string $prefix = '') { argument
14 $this->elementName = $name;
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverBy.php7 * ie. 'class name', 'css selector', 'id', 'name', 'link text',
8 * 'partial link text', 'tag name' and 'xpath'.
46 * Locates elements whose class name contains the search value; compound class
54 return new static('class name', $class_name);
82 * @param string $name
85 public static function name($name) argument
87 return new static('name', $name);
[all...]
H A DWebDriverCapabilities.php8 * @return string The name of the browser.
13 * @param string $name
16 public function getCapability($name); argument
19 * @return string The name of the platform.
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
H A DCss.php151 $this->_buffer .= $attribute->name;
171 $this->_buffer .= ':'.$class->name;
194 $this->_buffer .= ':'.$class->name.'(';
236 $this->_buffer .= '::'.$element->name;
H A DExplain.php52 * @param string $name
59 string $name, string $content = '', array $attributes = [], string $contentType = 'text' argument
61 $result = $this->_document->createElementNS($this->_xmlns, $name);
287 $this->appendElement('name', $attribute->name);
318 $this->appendElement('name', ':'.$class->name);
330 $this->appendElement('name', ':'.$class->name);
413 $this->appendElement('name', '
[all...]
H A DXpath.php344 * Output the type (element name) selector to the buffer
373 $condition = 'local-name() = '.$this->quoteLiteral($elementName);
421 $attribute->name,
428 $attribute->name,
436 $attribute->name,
441 $condition = '@'.$attribute->name.' = '.$this->quoteLiteral($attribute->literal->value);
446 $attribute->name,
453 $attribute->name,
459 $condition = '@'.$attribute->name;
507 switch ($pseudoClass->name) {
[all...]
/plugin/combo/action/
H A Dmetatwitter.php39 * The handle name
150 $name = str_replace("@", "", $siteTwitterHandle);
151 $event->data['link'][] = array("rel" => "me", "href" => "https://twitter.com/$name");
202 $event->data['meta'][] = array("name" => $key, "content" => $content);
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataSystem.php185 public static function getForName(string $name): Metadata argument
188 $name = strtolower(trim($name));
189 $metadataClass = self::METADATAS[$name] ?? null;
193 throw new ExceptionNotFound("No metadata found with the name ($name)");
/plugin/combo/vendor/antlr/antlr4-php-runtime/
H A DLICENSE16 3. Neither the name of the copyright holder nor the names of its
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHandlebars.php168 * @param string $template template name
179 * @param string $template template name
216 * @param string $name helper name
221 public function addHelper($name, $helper) argument
223 $this->getHelpers()->add($name, $helper);
227 * Get a helper by name.
229 * @param string $name helper name
232 public function getHelper($name) argument
243 hasHelper($name) global() argument
254 removeHelper($name) global() argument
454 loadTemplate($name) global() argument
468 loadPartial($name) global() argument
[all...]
H A DHelpers.php6 * function ($sender, $name, $arguments) $arguments is unscaped arguments and
59 * @param array $helpers array of name=>$value helpers
76 foreach ($helpers as $name => $helper) {
77 $this->add($name, $helper);
85 * @param string $name helper name
91 public function add($name, $helper) argument
94 throw new InvalidArgumentException("$name Helper is not a callable.");
96 $this->helpers[$name] = $helper;
100 * Check if $name helpe
106 has($name) global() argument
119 __get($name) global() argument
135 __isset($name) global() argument
148 __set($name, $helper) global() argument
160 __unset($name) global() argument
172 remove($name) global() argument
[all...]
H A DLoader.php21 * Load a Template by name.
23 * @param string $name template name to load
27 public function load($name); argument
H A DTemplate.php339 $name = $current[Tokenizer::NAME];
340 $value = $context->get($name);
345 if (substr(trim($name), 0, 1) == '@') {
346 $variable = $context->getDataVariable($name);
354 if ($name == '@index') {
357 if ($name == '@key') {
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/Loader/
H A DFilesystemLoader.php73 * Load a Template by name.
79 * @param string $name template name
83 public function load($name) argument
85 if (!isset($this->_templates[$name])) {
86 $this->_templates[$name] = $this->loadFile($name);
89 return new HandlebarsString($this->_templates[$name]);
93 * Helper function for loading a Handlebars file by name.
95 * @param string $name templat
100 loadFile($name) global() argument
118 getFileName($name) global() argument
[all...]
H A DStringLoader.php27 * @param string $name Handlebars Template source
31 public function load($name) argument
33 return new HandlebarsString($name);
/plugin/combo/vendor/symfony/deprecation-contracts/
H A DREADME.md12 - the name of the Composer package that is triggering the deprecation
/plugin/combo/vendor/php-webdriver/webdriver/
H A DCHANGELOG.md205 - Fixed retrieving temporary path name in `FirefoxDriver` when `open_basedir` restriction is in effect.
/plugin/combo/
H A Dplugin.info.txt6 name Combo Plugin

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