Lines Matching defs:string

54      * @var string the alt attribute value (known as the title for dokuwiki)
241 * @var string the functional tag to which the attributes applies
250 * @var string
268 * @var string - the inner Text (used for script or style tag mostly)
270 private string $innerText;
289 * Empty string, 0 may exist
332 * @param string|null $logicalTag - the logical tag for which this attribute will apply
335 public static function createFromCallStackArray(?array $callStackArray, string $logicalTag = null): TagAttributes
377 * @return string return a CSS property with pixel as unit if the unit is not specified
380 public static function toQualifiedCssValue($value): string
389 * @return mixed|string
447 * @return string
450 public function getStyle(): string
802 * @return string|array|null a HTML value in the form 'value1 value2...'
819 * @return string|array|null
844 * @return array - an array of key string and value of the component attributes
869 * width can be zero, wiki-id can be the empty string (ie root namespace)
871 * Value can be array, number, string
935 function toHTMLAttributeString(): string
994 function toHtmlEnterTag($htmlTag): string
1024 function toHtmlEmptyTag($htmlTag): string
1099 * @return string - the mime of the request
1128 * @return null|string[] - an array of values
1171 * @param $string
1175 function removeAttributeIfPresent($string): TagAttributes
1177 $this->removeComponentAttributeIfPresent($string);
1178 $this->removeOutputAttributeIfPresent($string);
1183 public function removeOutputAttributeIfPresent($string)
1185 $lowerAtt = strtolower($string);
1215 * @return string - the marki tag made of logical attribute
1238 * @param string $key add an html attribute with the empty string
1241 function addBooleanOutputAttributeValue(string $key): TagAttributes
1390 public function getValueAsInteger(string $WIDTH_KEY, ?int $default = null): ?int
1399 public function hasClass(string $string): bool
1401 return strpos($this->getClass(), $string) !== false;
1435 * @return string[]
1448 throw new ExceptionBadArgument("The attribute ($attributeName) does not contain a string, we can't return multiple values");
1455 public function getComponentAttributeValueAndRemoveIfPresent(string $attribute, $default = null)
1471 public function hasComponentAttributeAndRemove(string $key): bool
1481 * @param string $text - the text node content
1484 public function setInnerText(string $text): TagAttributes
1493 public function getInnerText(): string
1502 public function setId(string $id): TagAttributes