PATH:
home
/
lab2454c
/
spaxtac.com
/
wp-content
/
plugins
/
wp-user-frontend
/
includes
/
fields
<?php /** * Section Break Field Class */ class WPUF_Form_Field_SectionBreak extends WPUF_Field_Contract { public function __construct() { $this->name = __( 'Section Break', 'wp-user-frontend' ); $this->input_type = 'section_break'; $this->icon = 'columns'; } /** * Render the Section Break field * * @param array $field_settings * @param int $form_id * @param string $type * @param int $post_id * * @return void */ public function render( $field_settings, $form_id, $type = 'post', $post_id = null ) { $field_settings['name'] = isset( $field_settings['name'] ) ? $field_settings['name'] : $this->input_type; $field_settings['description'] = isset( $field_settings['description'] ) ? $field_settings['description'] : ''; ?> <li <?php $this->print_list_attributes( $field_settings ); ?>> <div class="wpuf-section-wrap wpuf-fields <?php echo esc_attr( 'section_' . $form_id ); ?><?php echo esc_attr( ' wpuf_' . $field_settings['name'] . '_' . $form_id ); ?>" style="width: 100%; text-align:center"> <h2 class="wpuf-section-title"><?php echo esc_attr( $field_settings['label'] ); ?></h2> <div class="wpuf-section-details"><?php echo esc_attr( $field_settings['description'] ); ?></div> </div> </li> <?php } /** * It's a full width block * * @return bool */ public function is_full_width() { return true; } /** * Get field options setting * * @return array */ public function get_options_settings() { $options = [ [ 'name' => 'label', 'title' => __( 'Title', 'wp-user-frontend' ), 'type' => 'text', 'section' => 'basic', 'priority' => 10, 'help_text' => __( 'Title of the section', 'wp-user-frontend' ), ], [ 'name' => 'description', 'title' => __( 'Description', 'wp-user-frontend' ), 'type' => 'textarea', 'section' => 'basic', 'priority' => 12, 'help_text' => __( 'Some details text about the section', 'wp-user-frontend' ), ], ]; return $options; } /** * Get the field props * * @return array */ public function get_field_props() { $props = [ 'input_type' => 'section_break', 'template' => $this->get_type(), 'label' => $this->get_name(), 'description' => __( 'Some description about this section', 'wp-user-frontend' ), 'id' => 0, 'is_new' => true, 'show_in_post' => 'yes', 'hide_field_label' => 'no', 'wpuf_cond' => null, ]; return $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]