// SYSTEM PANEL //
[ROOT]
/
home
/
comaria
/
irving
/
wp-content
/
plugins
/
essential-blocks
/
blocks
[ PARENT ]
EDIT :: AdvancedTabs.php
<?php namespace EssentialBlocks\blocks; use EssentialBlocks\Core\Block; class AdvancedTabs extends Block { protected $frontend_scripts = array( 'essential-blocks-advanced-tabs-frontend' ); protected $frontend_styles = array( 'essential-blocks-frontend-style', 'essential-blocks-fontawesome' ); /** * Unique name of the block. * * @return string */ public function get_name() { return 'advanced-tabs'; } /** * Initialize the InnerBlocks for Accordion * * @return array<Block> */ public function inner_blocks() { return array( Tab::get_instance(), ); } /** * Register all other scripts * * @return void */ public function register_scripts() { $this->assets_manager->register( 'advanced-tabs-frontend', $this->path() . '/frontend/index.js' ); } }
SAVE
CANCEL