Home
last modified time | relevance | path

Searched refs:key (Results 226 – 250 of 2492) sorted by last modified time

12345678910>>...100

/plugin/combo/ComboStrap/
H A DBrandButton.php249 foreach ($templateData as $key => $value) {
250 $templateData[$key] = urlencode($value);
346 foreach ($properties as $key => $value) {
347 $cssProperties .= " $key:$value;\n";
374 foreach ($hoverProperties as $key => $value) {
375 $hoverCssProperties .= " $key:$value;\n";
H A DMarkupRef.php587 $key = $tokens[0];
598 $anchorPosition = strpos($key, '#');
600 $this->url->setFragment(substr($key, $anchorPosition + 1));
601 $key = substr($key, 0, $anchorPosition);
609 LogUtility::msg("The value ($value) of the key ($key) for the link ($this) has $countHashTag `#` characters and the maximum supported is 2.", LogUtility::LVL_MSG_ERROR);
621 $lowerCaseKey = strtolower($key);
657 $this->url->addQueryParameter($key, $value);
H A DCacheResult.php39 return $this->cacheParser->key;
H A DMediaMarkup.php530 * @return array of key string and value
756 foreach ($tagAttributes->getComponentAttributes() as $key => $value) {
757 $this->extraMediaTagAttributes->addComponentAttributeValue($key, $value);
760 foreach ($tagAttributes->getStyleDeclarations() as $key => $value) {
761 $this->extraMediaTagAttributes->addStyleDeclarationIfNotSet($key, $value);
H A DConditionalValue.php53 foreach ($parts as $key => $part) {
H A DDatabasePageRow.php582 foreach ($attributes as $key => $value) {
584 throw new ExceptionRuntime("The attribute ($key) has value that is an array (" . implode(", ", $value) . ")");
586 $columnClauses[] = "$key = ?";
587 $values[$key] = $value;
591 * Primary key has moved during the time
594 * If the primary key is null, no record was found
599 * We just add the primary key
H A DExecutionContext.php528 * @param string $key
534 public function setConf(string $key, $value, ?string $pluginNamespace = PluginUtility::PLUGIN_BASE_NAME): ExecutionContext
536 $this->getApp()->getConfig()->setConf($key, $value, $pluginNamespace);
541 * @param string $key
546 public function getConfValue(string $key, string $default = null)
548 return $this->getApp()->getConfig()->getValue($key, $default);
551 public function setRuntimeBoolean(string $key, bool $b): ExecutionContext
553 $this->executionScopedVariables[$key] = $b;
703 public function setConfGlobal(string $key, string $value): ExecutionContext
705 $this->setConf($key,
525 setConf(string $key, $value, string $pluginNamespace = PluginUtility PLUGIN_BASE_NAME) global() argument
537 getConfValue(string $key, string $default = null) global() argument
542 setRuntimeBoolean(string $key, bool $b) global() argument
694 setConfGlobal(string $key, string $value) global() argument
[all...]
H A DGridTag.php161 foreach ($defaultAttributes as $key => $value) {
162 if (!$attributes->hasComponentAttribute($key)) {
163 $attributes->addComponentAttributeValue($key, $value);
H A DPluginUtility.php162 * Take an array where the key is the attribute name
213 foreach ($matches[1] as $key => $parameterKey) {
216 $value = $matches[3][$key];
219 $value = $matches[2][$key];
243 * @param $hasThirdValue - if true, the third parameter is treated as value, not a property and returned in the `third` key
245 * @param $keyThirdArgument - if a third argument is found, return it with this key
439 list($key, $value) = explode(":", $property);
440 if ($key != "") {
441 $attributes->addStyleDeclarationIfNotSet($key, $value);
H A DHttp.php10 public static function removeHeaderIfPresent(string $key) argument
13 if (preg_match("/$key/i", $header)) {
14 header_remove($key);
/plugin/combo/syntax/
H A Dminimap.php91 foreach ($matches[1] as $key => $parameterKey) {
93 $value = $matches[2][$key];
/plugin/combo/action/
H A Dmetacanonical.php100 * First search the key of the meta array
104 foreach ($event->data['link'] as $key => $link) {
106 $canonicalKey = $key;
125 foreach ($event->data['meta'] as $key => $meta) {
131 $canonicalOgKeyKey = $key;
194 throw new ExceptionNotFound("The meta key {$keyToSearch} with the value {$keyValueToSearch} was not found");
H A Drouter.php1095 foreach ($matches as $key => $match) {
1096 if ($key == 0) {
1099 $calculatedTarget = str_replace('$' . $key, $match, $calculatedTarget);
H A Dstaticresource.php150 * If there is no buster key, the infinite cache is off
363 foreach ($properties as $key => $value) {
370 if (in_array($key, ["media", "tok", IFetcher::CACHE_BUSTER_KEY])) {
379 $etagString .= "$key=$value";
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverDispatcher.php57 $key = array_search($listener, $this->listeners, true);
58 if ($key !== false) {
59 unset($this->listeners[$key]);
H A DWebDriverKeyboard.php16 * Press a key
19 * @param string $key
22 public function pressKey($key); argument
25 * Release a key
28 * @param string $key
31 public function releaseKey($key); argument
H A DWebDriverKeys.php118 foreach ($keys as $key) {
119 if (is_array($key)) {
120 // handle key modifiers
121 $key = implode('', $key) . self::NULL; // the NULL clears the input state (eg. previous modifiers)
123 $encoded[] = (string) $key;
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataTabular.php20 * ie an entity with a map that has a key
37 * - the key is the `identifier value`
39 * * the key is the {@link Metadata::getPersistentName()}
49 * where the identifier value is the key
70 foreach ($keys as $key) {
71 if (!is_numeric($key)) {
72 throw new ExceptionRuntime("The element of the array are not rows. The index ($key) should be numeric and is not");
94 * Each row has the key has value
174 * Check which kind of key is used
175 * Resistance to the property key !
[all...]
/plugin/combo/ComboStrap/Meta/Field/
H A DPageImages.php78 foreach ($persistentValue as $key => $value) {
80 if (is_numeric($key)) {
93 $imagePath = $key;
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DContext.php25 const DATA_KEY = 'key';
46 * @var array key stack for objects
48 protected $key = []; variable in Handlebars\\Context
106 * @param array $data Associative array where key is the name of the @data variable and value is the value.
118 * Push a Key onto the key stack
120 * @param string $key Key of the current object property.
124 public function pushKey($key) argument
126 array_push($this->key, $key);
164 * Pop the last key fro
[all...]
/plugin/combo/vendor/symfony/yaml/
H A DCHANGELOG.md124 null: null key
126 2.0: float key
137 "null": null key
139 "2.0": float key
147 * Omitting the key of a mapping is deprecated and will throw a `ParseException` in Symfony 4.0.
159 when the mapping key is not quoted and will lead to a `ParseException` in
H A DInline.php142 foreach ($value as $key => $val) {
143 $output[] = sprintf('%s: %s', self::dump($key, $flags), self::dump($val, $flags));
216 foreach ($value as $key => $val) {
217 if ($key !== $expectedKey++) {
245 foreach ($value as $key => $val) {
246 $output[] = sprintf('%s: %s', self::dump($key, $flags), self::dump($val, $flags));
438 // key
441 $key = self::parseScalar($mapping, $flags, [':', ' '], $i, false);
444 throw new ParseException('Missing mapping key.', self::$parsedLineNumber + 1, $mapping);
447 if ('!php/const' === $key) {
[all...]
H A DParser.php199 || self::preg_match('#^(?P<key>'.Inline::REGEX_QUOTED_STRING.'|[^ \'"\{\[].*?) *\:(\s+(?P<value>.+?))?\s*$#u', $this->trimTag($values['value']), $matches)
218 self::preg_match('#^(?P<key>(?:![^\s]++\s++)?(?:'.Inline::REGEX_QUOTED_STRING.'|(?:!?!php/const:)?[^ \'"\[\{!].*?)) *\:(( |\t)++(?P<value>.+))?$#u', rtrim($this->currentLine), $values)
219 && (false === strpos($values['key'], ' #') || \in_array($values['key'][0], ['"', "'"]))
227 $key = Inline::parseScalar($values['key']);
235 if (!\is_string($key) && !\is_int($key)) {
236 throw new ParseException((is_numeric($key) ? 'Numeric' : 'Non-string').' keys are not supported. Quote your evaluable mapping keys instead.', $this->getRealCurrentLineNb() + 1, $this->currentLine);
240 if (\is_float($key)) {
[all...]
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.2-compressed.js47 parentElement.environment.getParent().lib.child.get()[0].lib.child.get()[0].lib.attribute.addClass("Opened");parentElement.opened=true;for(var key in obj){try{if(env.hideDOMFunctions&&typeof(obj[key])=="function")continue;var value=obj[key],property=key,container=new lib.element("DIV").attribute.addClass("DOMRow").insert(parentElement),left=new lib.element("DIV").attribute.addClass("DOMRowLeft").insert(container),right=new lib.element("DIV").attribute.addClass("DOMRowRight").insert(container);container.child.add(new lib.element("DIV").attribute.addClass('Clear'));var link=new lib.element("A").attribute.addClass(typeof value=="object"&&Boolean(value)?"Property Object":"Property").update(property).insert(left);right.update(d.highlight(value,false,true));var subContainer=new lib.element("DIV").attribute.addClass("DOMRowSubContainer").insert(container);if(typeof value!="object"||Boolean(value)==false)
59 result.push(" ]</span>");}}else if(_inObject){result.push("<span class='Gray Italic'>Object</span>");}else{result.push("<span class='Strong Green"+(!_link?"'":" ObjectLink' onmouseover='this.className=this.className.replace(\"ObjectLink\",\"ObjectLinkHover\")' onmouseout='this.className=this.className.replace(\"ObjectLinkHover\",\"ObjectLink\")' onclick='firebug.d.console.openObject("+(d.console.cache.push(_value)-1)+")'")+">Object");var i=0;for(var key in _value){var value=_value[key];if((_inObject||_inArray)&&i>3){result.push(" <span class='Strong Gray'>More...</span>");break;}
60 result.push(" "+key+"="+d.highlight(value,true));i++;}
106 return true;};if(!_object||_object==window||typeof _object=="function"||typeof _object=="string"||typeof _object.length!="number"){return false};var len=_object.length;if(len>0&&_object[0]!=undefined&&_object[len-1]!=undefined){return true;}else{for(var key in _object){if(key!="item"&&key!
116 push(_source[key],_hash[key]) global() argument
[all...]
H A Dfirebug-lite-1.2.js1158 for (var key in obj) {
1160 if (env.hideDOMFunctions && typeof(obj[key]) == "function") continue;
1161 var value = obj[key], property = key, container = new lib.element("DIV").attribute.addClass("DOMRow").insert(parentElement),
1286 for(var key in _value){
1287 var value = _value[key];
1292 result.push(" "+key+"="+d.highlight(value,true));
2018 for(var key in _object){
2019 if(key!="item"&&key!
2177 push( _source[key], _hash[key] ) global() argument
[all...]

12345678910>>...100