NF_Fields_Phone
Class NF_Fields_Phone.
Defined (1)
The class is defined in the following location(s).
- /includes/Fields/Phone.php
- class NF_Fields_Phone extends NF_Fields_Textbox
- {
- protected $_name = 'phone';
- protected $_nicename = 'Phone';
- protected $_section = 'userinfo';
- protected $_icon = 'phone';
- protected $_type = 'textbox';
- protected $_templates = 'tel';
- public function __construct()
- {
- parent::__construct();
- $this->_nicename = __( 'Phone', 'ninja-forms' );
- }
- }