Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
plugins
/
everest-forms
/
includes
/
fields
/
Editing: class-evf-field-password.php
<?php /** * Password field. * * @package EverestForms\Fields * @since 1.2.0 */ defined( 'ABSPATH' ) || exit; /** * EVF_Field_Password Class. */ class EVF_Field_Password extends EVF_Form_Fields { /** * Constructor. */ public function __construct() { $this->name = esc_html__( 'Password', 'everest-forms' ); $this->type = 'password'; $this->icon = 'evf-icon evf-icon-password'; $this->order = 70; $this->group = 'advanced'; $this->is_pro = true; $this->links = array( 'image_id' => '', 'vedio_id' => 'OzSuWDyccFQ', ); parent::__construct(); } }
Save
Cancel