PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
themes
/
easyweb
/
inc
/
meta-box
/
inc
/
walkers
<?php /** * Select Tree Walker for cascading select fields. * @uses RWMB_Select_Walker */ class RWMB_Select_Tree_Walker { /** * Field data. * @var string */ public $field; /** * Field meta value. * @var array */ public $meta = array(); function __construct( $db_fields, $field, $meta ) { $this->db_fields = wp_parse_args( (array) $db_fields, array( 'parent' => '', 'id' => '', 'label' => '', ) ); $this->field = $field; $this->meta = (array) $meta; } function walk( $options ) { $parent = $this->db_fields['parent']; $children = array(); foreach ( $options as $o ) { $children[$o->$parent][] = $o; } $top_level = isset( $children[0] ) ? 0 : $options[0]->$parent; return $this->display_level( $children, $top_level, true ); } function display_level( $options, $parent_id = 0, $active = false ) { $id = $this->db_fields['id']; $field = $this->field; $meta = $this->meta; $walker = new RWMB_Select_Walker( $this->db_fields, $this->field, $this->meta ); $field_class = RW_Meta_Box::get_class_name( $field ); $attributes = call_user_func( array( $field_class, 'get_attributes' ), $field, $meta ); $children = $options[$parent_id]; $output = sprintf( '<div class="rwmb-select-tree %s" data-parent-id="%s"><select %s>', $active ? '' : 'hidden', $parent_id, RWMB_Field::render_attributes( $attributes ) ); $output .= isset( $field['placeholder'] ) ? "<option value=''>{$field['placeholder']}</option>" : '<option></option>'; $output .= $walker->walk( $children, - 1 ); $output .= '</select>'; foreach ( $children as $c ) { if ( isset( $options[$c->$id] ) ) { $output .= $this->display_level( $options, $c->$id, in_array( $c->$id, $meta ) && $active ); } } $output .= '</div>'; return $output; } }
[+]
..
[-] walker.php
[edit]
[-] input-list-walker.php
[edit]
[-] select-tree-walker.php
[edit]
[-] select-walker.php
[edit]