You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							99 lines
						
					
					
						
							2.4 KiB
						
					
					
				
			
		
		
	
	
							99 lines
						
					
					
						
							2.4 KiB
						
					
					
				<?php | 
						|
/** | 
						|
 * @link http://www.yiiframework.com/ | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC | 
						|
 * @license http://www.yiiframework.com/license/ | 
						|
 */ | 
						|
 | 
						|
namespace yii\bootstrap; | 
						|
 | 
						|
use yii\helpers\base\ArrayHelper; | 
						|
use yii\helpers\Html; | 
						|
 | 
						|
 | 
						|
/** | 
						|
 * ButtonGroup renders a button group bootstrap component. | 
						|
 * | 
						|
 * For example, | 
						|
 * | 
						|
 * ```php | 
						|
 * // a button group with items configuration | 
						|
 * echo ButtonGroup::::widget(array( | 
						|
 *     'items' => array( | 
						|
 *         array('label' => 'A'), | 
						|
 *         array('label' => 'B'), | 
						|
 *     ) | 
						|
 * )); | 
						|
 * | 
						|
 * // button group with an item as a string | 
						|
 * echo ButtonGroup::::widget(array( | 
						|
 *     'items' => array( | 
						|
 *         Button::widget(array('label' => 'A')), | 
						|
 *         array('label' => 'B'), | 
						|
 *     ) | 
						|
 * )); | 
						|
 * ``` | 
						|
 * @see http://twitter.github.io/bootstrap/javascript.html#buttons | 
						|
 * @see http://twitter.github.io/bootstrap/components.html#buttonGroups | 
						|
 * @author Antonio Ramirez <amigo.cobos@gmail.com> | 
						|
 * @since 2.0 | 
						|
 */ | 
						|
class ButtonGroup extends Widget | 
						|
{ | 
						|
	/** | 
						|
	 * @var array list of buttons. Each array element represents a single button | 
						|
	 * which can be specified as a string or an array of the following structure: | 
						|
	 * | 
						|
	 * - label: string, required, the button label. | 
						|
	 * - options: array, optional, the HTML attributes of the button. | 
						|
	 */ | 
						|
	public $buttons = array(); | 
						|
	/** | 
						|
	 * @var boolean whether to HTML-encode the button labels. | 
						|
	 */ | 
						|
	public $encodeLabels = true; | 
						|
 | 
						|
 | 
						|
	/** | 
						|
	 * Initializes the widget. | 
						|
	 * If you override this method, make sure you call the parent implementation first. | 
						|
	 */ | 
						|
	public function init() | 
						|
	{ | 
						|
		parent::init(); | 
						|
		$this->clientOptions = false; | 
						|
		$this->addCssClass($this->options, 'btn-group'); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Renders the widget. | 
						|
	 */ | 
						|
	public function run() | 
						|
	{ | 
						|
		echo Html::tag('div', $this->renderButtons(), $this->options); | 
						|
		$this->registerPlugin('button'); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Generates the buttons that compound the group as specified on [[items]]. | 
						|
	 * @return string the rendering result. | 
						|
	 */ | 
						|
	protected function renderButtons() | 
						|
	{ | 
						|
		$buttons = array(); | 
						|
		foreach ($this->buttons as $button) { | 
						|
			if (is_array($button)) { | 
						|
				$label = ArrayHelper::getValue($button, 'label'); | 
						|
				$options = ArrayHelper::getValue($button, 'options'); | 
						|
				$buttons[] = Button::widget(array( | 
						|
					'label' => $label, | 
						|
					'options' => $options, | 
						|
					'encodeLabel' => $this->encodeLabels | 
						|
				)); | 
						|
			} else { | 
						|
				$buttons[] = $button; | 
						|
			} | 
						|
		} | 
						|
		return implode("\n", $buttons); | 
						|
	} | 
						|
}
 | 
						|
 |