public ElementInfoManagerInterface::getInfoProperty($type, $property_name, $default = NULL)
Retrieves a single property for the defined element type.
Parameters
string $type: An element type as defined by an element plugin.
string $property_name: The property within the element type that should be returned.
$default: (Optional) The value to return if the element type does not specify a value for the property. Defaults to NULL.
Return value
string The property value of the defined element type. Or the provided default value, which can be NULL.
File
- core/lib/Drupal/Core/Render/ElementInfoManagerInterface.php, line 62
Class
- ElementInfoManagerInterface
- Collects available render array element types.
Namespace
Drupal\Core\Render
Code
public function getInfoProperty($type, $property_name, $default = NULL);
Please login to continue.