PATH:
home
/
lab2454c
/
spaxtac.com
/
wp-content
/
plugins
/
wp-user-frontend
/
includes
/
fields
<?php trait WPUF_Form_Field_Post_trait { /** * Prints HTML5 required attribute * * @param array $attr * * @return string */ public function required_html5( $attr ) { if ( $attr['required'] == 'yes' ) { // echo ' required="required"'; } } /** * Print required class name * * @param array $attr * * @return string */ public function required_class( $attr ) { if ( $attr['required'] == 'yes' ) { echo ' required'; } } /** * Prints required field asterisk * * @param array $attr * * @return string */ public function required_mark( $attr ) { if ( isset( $attr['required'] ) && $attr['required'] == 'yes' ) { return ' <span class="required">*</span>'; } } }
[-] 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]