PATH:
home
/
lab2454c
/
invest.credityork.com
/
wp-content
/
plugins
/
wp-user-frontend
/
includes
/
fields
<?php class WPUF_Form_Field_Pro extends WPUF_Field_Contract { /** * Render the text field * * @param array $field_settings * @param int $form_id * * @return void */ public function render( $field_settings, $form_id, $post_id = null, $user_id = null ) { if ( current_user_can( 'manage_options' ) ) { esc_html( __( $field_settings['template'] . ' is a premium field. To use this field you need to upgrade to the premium version.', 'wp-user-frontend' ) ); echo wp_kses_post( '<br/>' ); } } /** * Check if it's a pro feature * * @return bool */ public function is_pro() { return true; } /** * Get field options setting * * @return array */ public function get_options_settings() { return __return_empty_array(); } /** * Get the field props * * @return array */ public function get_field_props() { return __return_empty_array(); } }
[-] 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]