Block::render( array $attributes = array() )

Since we are dealing with a Dynamic type of Block we need a PHP method to render it


Parameters

$attributes

(array) (Optional)

Default value: array()


Top ↑

Return

(string)


Top ↑

Source

File: src/Tickets/Blocks/Ticket/Block.php

	public function render( $attributes = [] ) {
		// This block has no render.
		return '';
	}

Top ↑

Changelog

Changelog
Version Description
4.9.2 Introduced.