Lines Matching refs:array

219      * @var array the style declaration array
221 private array $styleDeclaration = array();
230 * @var array - output attribute are not the parsed attributes known as componentAttribute)
233 private $outputAttributes = array();
236 * @var array - the final html array
238 private $finalHtmlArray = array();
280 * @param array $componentAttributes
282 private function __construct(array $componentAttributes = array(), $tag = null)
306 * @param array $defaultAttributes - the default attributes values
307 * @param array $knownTypes - the known types
311 public static function createFromTagMatch($match, array $defaultAttributes = [], array $knownTypes = [], bool $allowFirstBooleanAttributesAsType = false): TagAttributes
331 * @param array|null $callStackArray - an array of key value pair
335 public static function createFromCallStackArray(?array $callStackArray, string $logicalTag = null): TagAttributes
341 LogUtility::msg("The renderArray variable passed is not an array ($callStackArray)");
460 public function getStyleDeclarations(): array
537 * To an HTML array in the form
543 public function toHtmlArray(): array
643 * Create a non-sorted temporary html attributes array
696 $sortedArray = array();
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
845 * This array is saved on the disk
847 public function toCallStackArray(): array
864 $array = array();
871 * Value can be array, number, string
874 $array[$key] = $value;
881 $array[$key] = $value;
884 $array["style"] = $this->getStyle();
890 $array[self::DOKUWIKI_TEXT_NODE_ATTRIBUTE] = $this->innerText;
892 return $array;
979 function getComponentAttributes(): array
1128 * @return null|string[] - an array of values
1132 function getValuesAndRemove($attributeName, $default = null): array
1316 * @param array $arrayToEscape
1324 * @return array
1327 function encodeToHtmlValue(array $arrayToEscape, $subKey = null): array
1420 public function setKnownTypes(?array $knownTypes): TagAttributes
1434 * @param array|null $default
1438 public function getValues($attributeName, ?array $default = null): ?array