<?php
/**
 *## TbLabel class file.
 *
 * @author Christoffer Niska <ChristofferNiska@gmail.com>
 * @copyright  Copyright &copy; Christoffer Niska 2011-
 * @license [New BSD License](http://www.opensource.org/licenses/bsd-license.php)
 */
Yii::import('booster.widgets.TbWidget');
/**
 *## Bootstrap label widget.
 *
 * @see <http://twitter.github.com/bootstrap/components.html#labels>
 *
 * @package booster.widgets.decoration
 */
class TbLabel extends TbWidget {

	/**
	 * @var string the label text.
	 */
	public $label;

	/**
	 * @var boolean whether to encode the label.
	 */
	public $encodeLabel = true;

	/**
	 * @var array the HTML attributes for the widget container.
	 */
	public $htmlOptions = array();

	/**
	 *### .init()
	 *
     * At the start of widget we collect the attributes for badge tag.
	 */
	public function init() {
		
		$classes = array('label');

		if($this->isValidContext())
			$classes[] = 'label-' . $this->getContextClass();

		if (!empty($classes)) {
			$classes = implode(' ', $classes);
			if (isset($this->htmlOptions['class'])) {
				$this->htmlOptions['class'] .= ' ' . $classes;
			} else {
				$this->htmlOptions['class'] = $classes;
			}
		}

		if ($this->encodeLabel === true) {
			$this->label = CHtml::encode($this->label);
		}
	}

	/**
	 *### .run()
	 *
     * Upon completing the badge we write the span tag with collected attributes to document.
	 */
	public function run() {
		
		echo CHtml::tag('span', $this->htmlOptions, $this->label);
	}
}
