Lines Matching defs:value

165      * The attribute name and value are escaped
184 * line-numbers="value"
185 * line-numbers='value'
187 * This value may be in:
188 * * configuration value
206 // * there may be space every everywhere when the value is enclosed with a quote
207 // * there may be no space in the value and between the equal sign when the value is not enclosed
215 // group 3 (ie the value between quotes)
216 $value = $matches[3][$key];
217 if ($value == "") {
218 // check the value without quotes
219 $value = $matches[2][$key];
221 // if there is no value, this is a boolean
222 if ($value == "") {
223 $value = true;
225 $value = hsc($value);
227 $parameters[hsc(strtolower($parameterKey))] = $value;
243 * @param $hasThirdValue - if true, the third parameter is treated as value, not a property and returned in the `third` key
244 * use for the code/file/console where they accept a name as third value
301 * Do we have a value as first argument ?
439 list($key, $value) = explode(":", $property);
441 $attributes->addStyleDeclarationIfNotSet($key, $value);
490 * @return string - the value of a query string property or if in test mode, the value of a test variable
500 $value = $INPUT->str($name);
501 if ($value == null && defined('DOKU_UNITTEST')) {
504 $value = $COMBO[$name];
507 if ($value == null) {
510 return $value;
691 * @param $value
696 static function addStyleProperty($property, $value, array &$attributes)
699 $attributes["style"] .= ";$property:$value";
701 $attributes["style"] = "$property:$value";
799 static function addAttributeValue($attribute, $value, array &$attributes)
802 $attributes[$attribute] .= " {$value}";
804 $attributes[$attribute] = "{$value}";