BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
plugins
/
robin-image-optimizer
/
libs
/
factory
/
forms
/
includes
📤 Upload
📝 New File
📁 New Folder
Close
Editing: form-layout.class.php
<?php /** * The file contains the base class for all form layouts. * * @package factory-forms * @since 1.0.0 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! class_exists( 'Wbcr_FactoryForms600_FormLayout' ) ) { /** * The base class for all form layouts. */ abstract class Wbcr_FactoryForms600_FormLayout extends Wbcr_FactoryForms600_Holder { /** * A form layout name. * * @since 1.0.0 * @var string */ protected $name = 'default'; /** * A holder type. * * @since 1.0.0 * @var string */ protected $type = 'form-layout'; /** * Creates a new instance of a form layout. * * @since 1.0.0 * @param mixed[] $options A holder options. * @param Wbcr_FactoryForms600_Form $form A parent form. */ public function __construct( $options, $form ) { $options['name'] = $this->name; $options['items'] = $form->getItems(); parent::__construct( $options, $form ); $this->addCssClass( 'factory-forms-600-' . $this->type ); $this->addCssClass( 'factory-forms-600-' . $this->name ); } /** * Renders a beginning of a form. * * @since 1.0.0 * @return void */ public function beforeRendering() { echo '<div '; $this->attrs(); echo '>'; } /** * Renders the end of a form. * * @since 1.0.0 * @return void */ public function afterRendering() { echo '</div>'; } /** * Rendering some html before a holder. * * @since 1.0.0 * @return void */ public function beforeHolder( $element ) { } /** * Rendering some html after a holder. * * @since 1.0.0 * @return void */ public function afterHolder( $element ) { } /** * Rendering some html before a contol. * * @since 1.0.0 * @return void */ public function beforeControl( $element ) { } /** * Rendering some html after a contol. * * @since 1.0.0 * @return void */ public function afterControl( $element ) { } } }
Save
Cancel