* @copyright (c) 2018, Webcraftic Ltd * * @package factory-forms * @since 1.0.0 */ // Exit if accessed directly if( !defined('ABSPATH') ) { exit; } if( !class_exists('Wbcr_FactoryForms480_FormGroupHolder') ) { /** * Group Holder * * @since 1.0.0 */ class Wbcr_FactoryForms480_FormGroupHolder extends Wbcr_FactoryForms480_Holder { /** * A holder type. * * @since 1.0.0 * @var string */ public $type = 'form-group'; /** * Here we should render a beginning html of the tab. * * @since 1.0.0 * @return void */ public function beforeRendering() { $this->addCssClass('factory-form-group-' . $this->getName()); $this->addHtmlAttr('id', 'factory-form-group-' . $this->getName()); ?>