Lines Matching refs:null

282     private function __construct(array $componentAttributes = array(), $tag = null)
288 * Delete null values
331 * @param array|null $callStackArray - an array of key value pair
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
337 if ($callStackArray === null) {
437 public function getClass($default = null)
440 if ($value !== null) {
480 $actual = null;
505 if ($actualValue === null || $actualValue !== TagAttributes::UN_SET) {
521 if ($isset === false && $this->knownTypes === null) {
776 $actualValue = $this->outputAttributes[$key] ?? null;
777 if ($actualValue === null) {
801 * @param null $default
802 * @return string|array|null a HTML value in the form 'value1 value2...'
804 public function getValue($attributeName, $default = null)
819 * @return string|array|null
823 public function getValueAndRemove($attributeName, $default = null)
851 if ($generatedId === null) {
854 if ($componentName === null) {
868 * Only null value are not passed
896 function getComponentAttributeValue($attributeName, $default = null)
945 * null are just not set
1050 * @return mixed|null - the value deleted / null if it does not exist
1067 return null;
1127 * @param null $default
1128 * @return null|string[] - an array of values
1132 function getValuesAndRemove($attributeName, $default = null): array
1192 function getValueAndRemoveIfPresent($attribute, $default = null)
1244 $this->outputAttributes[$key] = null;
1257 * @param null $default
1261 function getBooleanValueAndRemoveIfPresent($attribute, $default = null)
1269 function getBooleanValue($attribute, $default = null)
1272 if ($value !== null) {
1298 $value = $this->outputAttributes[$attribute] ?? null;
1299 if ($value === null) {
1317 * @param null $subKey
1327 function encodeToHtmlValue(array $arrayToEscape, $subKey = null): array
1339 if ($subKey == null) {
1371 if ($subKey == null) {
1390 public function getValueAsInteger(string $WIDTH_KEY, ?int $default = null): ?int
1393 if ($value === null) {
1394 return null;
1434 * @param array|null $default
1438 public function getValues($attributeName, ?array $default = null): ?array
1444 if ($value === null) {
1455 public function getComponentAttributeValueAndRemoveIfPresent(string $attribute, $default = null)
1513 if ($id === null) {