Block::render( array $attributes = array() )
Since we are dealing with a Dynamic type of Block we need a PHP method to render it
Contents
Parameters
- $attributes
-
(array) (Optional)
Default value: array()
Return
(string)
Source
File: src/Tickets/Blocks/Ticket/Block.php
public function render( $attributes = [] ) {
// This block has no render.
return '';
}
Changelog
| Version | Description |
|---|---|
| 4.9.2 | Introduced. |