PATH:
home
/
lab2454c
/
invest.credityork.com
/
wp-content
/
plugins
/
wp-user-frontend
/
includes
/
fields
<?php /** * Section Break Field Class */ class WPUF_Form_Field_Column extends WPUF_Field_Contract { public function __construct() { $this->name = __( 'Columns', 'wp-user-frontend' ); $this->input_type = 'column_field'; $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 ) { $i = 1; $columns = $field_settings['columns']; $columns_size = $field_settings['inner_columns_size']; $column_space = $field_settings['column_space']; $inner_fields = $field_settings['inner_fields']; $atts = []; ?> <li class="wpuf-el"> <div class="wpuf-field-columns <?php echo 'has-columns-' . esc_attr( $columns ); ?>"> <div class="wpuf-column-field-inner-columns"> <div class="wpuf-column"> <?php while ( $i <= $columns ) { ?> <div class="<?php echo 'column-' .esc_attr( $i ); ?> <?php echo 'items-of-column-' . esc_attr( $columns ); ?> wpuf-column-inner-fields" style="width: <?php echo esc_attr( $columns_size['column-' . $i] ); ?>; padding-right: <?php echo esc_attr( $column_space ) . 'px'; ?>"> <ul class="wpuf-column-fields"> <?php wpuf()->fields->render_fields( $inner_fields['column-' . $i], $form_id, $atts, $type, $post_id ); ?> </ul> </div> <?php $i++; ?> <?php } ?> </div> </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' => 'columns', 'title' => __( 'Number of Columns', 'wp-user-frontend' ), 'type' => 'range', 'section' => 'basic', 'priority' => 10, 'help_text' => __( 'Title of the section', 'wp-user-frontend' ), ], [ 'name' => 'column_space', 'title' => __( 'Space Between Columns', 'wp-user-frontend' ), 'type' => 'text', 'section' => 'basic', 'priority' => 11, 'help_text' => __( 'Add padding space between columns. e.g: 10', 'wp-user-frontend' ), ], [ 'name' => 'css', 'title' => __( 'CSS Class Name', 'wp-user-frontend' ), 'type' => 'text', 'section' => 'advanced', 'priority' => 22, 'help_text' => __( 'Provide a container class name for this field. Available classes: wpuf-col-half, wpuf-col-half-last, wpuf-col-one-third, wpuf-col-one-third-last', 'wp-user-frontend' ), ], ]; return apply_filters( 'wpuf_text_field_option_settings', $options ); } /** * Get the field props * * @return array */ public function get_field_props() { $props = [ 'input_type' => 'column_field', 'template' => $this->get_type(), 'id' => 0, 'is_new' => true, 'is_meta' => 'no', 'columns' => 3, 'min_column' => 1, 'max_column' => 3, 'column_space' => '5', 'inner_fields' => [ 'column-1' => [], 'column-2' => [], 'column-3' => [], ], 'inner_columns_size' => [ 'column-1' => '33.33%', 'column-2' => '33.33%', 'column-3' => '33.33%', ], ]; 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]