Server IP : 15.235.198.142 / Your IP : 216.73.216.14 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/kiwigrass_LIVE/wp-content/plugins/wpforms-lite/src/Forms/Fields/Base/ |
Upload File : |
<?php namespace WPForms\Forms\Fields\Base; use WPForms_Field; /** * Field's Frontend base class. * * @since 1.8.1 */ class Frontend { /** * Instance of the main WPForms_Field_{something} class. * * @since 1.8.1 * * @var WPForms_Field */ protected $field_obj; /** * Class constructor. * * @since 1.8.1 * * @param WPForms_Field $field_obj Instance of the WPForms_Field_{something} class. */ public function __construct( $field_obj ) { $this->field_obj = $field_obj; $this->init(); } /** * Initialize. * * @since 1.8.1 */ public function init() { $this->hooks(); } /** * Hooks. * * @since 1.8.1 */ protected function hooks() { } }