PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
cmb2
/
includes
/
types
<?php /** * CMB select field type * * @since 2.2.2 * * @category WordPress_Plugin * @package CMB2 * @author CMB2 team * @license GPL-2.0+ * @link https://cmb2.io */ class CMB2_Type_Select extends CMB2_Type_Multi_Base { public function render() { $a = $this->parse_args( 'select', array( 'class' => 'cmb2_select', 'name' => $this->_name(), 'id' => $this->_id(), 'desc' => $this->_desc( true ), 'options' => $this->concat_items(), ) ); $attrs = $this->concat_attrs( $a, array( 'desc', 'options' ) ); return $this->rendered( sprintf( '<select%s>%s</select>%s', $attrs, $a['options'], $a['desc'] ) ); } }
[+]
..
[-] CMB2_Type_Taxonomy_Select_Hierarchical.php
[edit]
[-] CMB2_Type_Colorpicker.php
[edit]
[-] CMB2_Type_Text_Datetime_Timestamp.php
[edit]
[-] CMB2_Type_Textarea.php
[edit]
[-] CMB2_Type_Select.php
[edit]
[-] CMB2_Type_Radio.php
[edit]
[-] CMB2_Type_Taxonomy_Radio.php
[edit]
[-] CMB2_Type_Taxonomy_Multicheck_Hierarchical.php
[edit]
[-] CMB2_Type_File_List.php
[edit]
[-] CMB2_Type_Taxonomy_Multicheck.php
[edit]
[-] CMB2_Type_Text_Time.php
[edit]
[-] CMB2_Type_Multicheck.php
[edit]
[-] CMB2_Type_Taxonomy_Radio_Hierarchical.php
[edit]
[-] CMB2_Type_Title.php
[edit]
[-] CMB2_Type_Taxonomy_Select.php
[edit]
[-] CMB2_Type_Counter_Base.php
[edit]
[-] CMB2_Type_Text_Date.php
[edit]
[-] CMB2_Type_Text.php
[edit]
[-] CMB2_Type_Text_Datetime_Timestamp_Timezone.php
[edit]
[-] CMB2_Type_Taxonomy_Base.php
[edit]
[-] CMB2_Type_Wysiwyg.php
[edit]
[-] CMB2_Type_Base.php
[edit]
[-] CMB2_Type_File.php
[edit]
[-] CMB2_Type_Checkbox.php
[edit]
[-] CMB2_Type_Picker_Base.php
[edit]
[-] CMB2_Type_Select_Timezone.php
[edit]
[-] CMB2_Type_File_Base.php
[edit]
[-] CMB2_Type_Oembed.php
[edit]
[-] CMB2_Type_Multi_Base.php
[edit]
[-] CMB2_Type_Textarea_Code.php
[edit]