PATH:
home
/
lab2454c
/
financial.datmont.com
/
wp-content
/
plugins
/
wp-user-frontend
/
includes
/
fields
<?php // Numeric Field Class class WPUF_Form_Field_Numeric extends WPUF_Field_Contract { public function __construct() { $this->name = __( 'Numeric Field', 'wp-user-frontend' ); $this->input_type = 'numeric_text_field'; $this->icon = 'hashtag'; } /** * Check if it's a pro feature * * @return bool */ public function is_pro() { return true; } public function render( $field_settings, $form_id, $post_id=null, $user_id=null ) { } public function get_options_settings() { } public function get_field_props() { $defaults = $this->default_attributes(); $props = []; return array_merge( $defaults, $props ); } }
[-] class-field-pro.php
[edit]
[-] class-field-hidden.php
[edit]
[+]
..
[-] class-field-checkbox.php
[edit]
[-] field-trait.php
[edit]
[-] class-field-image.php
[edit]
[-] class-field-featured-image.php
[edit]
[-] class-field-url.php
[edit]
[-] class-field-numeric.php
[edit]
[-] class-field-radio.php
[edit]
[-] class-field-text.php
[edit]
[-] class-abstract-fields.php
[edit]
[-] class-field-post-excerpt.php
[edit]
[-] class-field-sectionbreak.php
[edit]
[-] class-field-post-title.php
[edit]
[-] class-field-post-taxonomy.php
[edit]
[-] class-field-html.php
[edit]
[-] class-field-email.php
[edit]
[-] class-field-textarea.php
[edit]
[-] class-field-post-content.php
[edit]
[-] class-field-multidropdown.php
[edit]
[-] class-field-post-tags.php
[edit]
[-] class-pro-upgrade-fields.php
[edit]
[-] class-field-recaptcha.php
[edit]
[-] class-field-dropdown.php
[edit]
[-] class-field-column.php
[edit]