%PDF- %PDF-
Direktori : /var/www/html/higroup/wp-content/plugins/event-tickets/common/src/Tribe/Editor/Blocks/ |
Current File : /var/www/html/higroup/wp-content/plugins/event-tickets/common/src/Tribe/Editor/Blocks/Interface.php |
<?php interface Tribe__Editor__Blocks__Interface { /** * Which is the name/slug of this block * * @since 4.8 * * @return string */ public function slug(); /** * Which is the name/slug of this block * * @since 4.8 * * @return string */ public function name(); /** * What are the default attributes for this block * * @since 4.8 * * @return array */ public function default_attributes(); /** * Since we are dealing with a Dynamic type of Block we need a PHP method to render it * * @since 4.8 * * @param array $attributes * * @return string */ public function render( $attributes = [] ); /** * Does the registration for PHP rendering for the Block, important due to been * an dynamic Block * * @since 4.8 * * @return void */ public function register(); /** * Used to include any Assets for the Block we are registering * * @since 4.8 * * @return void */ public function assets(); /** * Attach any specific hook to the current block. * * @since 4.8 * * @return mixed */ public function hook(); }