golden hour
/var/www/html/wp-content/plugins/the-events-calendar/common/src/Tribe/Editor/Blocks
⬆️ Go Up
Upload
File/Folder
Size
Actions
Abstract.php
4.95 KB
Del
OK
Interface.php
1.08 KB
Del
OK
Edit: 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(); }
Save