1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
<?php
class CMB2_Type_Radio extends CMB2_Type_Multi_Base {
public $type = 'radio';
public function __construct( CMB2_Types $types, $args = array(), $type = '' ) {
parent::__construct( $types, $args );
$this->type = $type ? $type : $this->type;
}
public function render() {
$args = $this->parse_args( $this->type, array(
'class' => 'cmb2-radio-list cmb2-list',
'options' => $this->concat_items( array(
'label' => 'test',
'method' => 'list_input',
) ),
'desc' => $this->_desc( true ),
) );
return $this->rendered( $this->ul( $args ) );
}
protected function ul( $a ) {
return sprintf( '<ul class="%s">%s</ul>%s', $a['class'], $a['options'], $a['desc'] );
}
}