82 lines
2.3 KiB
PHP
82 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* TbCollapse class file.
|
|
* @author Christoffer Niska <christoffer.niska@gmail.com>
|
|
* @copyright Copyright © Christoffer Niska 2013-
|
|
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
|
|
* @package bootstrap.widgets
|
|
*/
|
|
|
|
/**
|
|
* Bootstrap collapse widget.
|
|
* @see http://twitter.github.com/bootstrap/javascript.html#collapse
|
|
*/
|
|
class TbCollapse extends CWidget
|
|
{
|
|
/**
|
|
* @var string the HTML tag for the container.
|
|
*/
|
|
public $tagName = 'div';
|
|
/**
|
|
* @var string the content text.
|
|
*/
|
|
public $content;
|
|
/**
|
|
* @var string the path to a partial view.
|
|
*/
|
|
public $view;
|
|
/**
|
|
* @var string the CSS selector for the parent element.
|
|
*/
|
|
public $parent;
|
|
/**
|
|
* @var boolean whether to be collapsed on invocation.
|
|
*/
|
|
public $toggle;
|
|
/**
|
|
* @var string[] $events the JavaScript event configuration (name=>handler).
|
|
*/
|
|
public $events = array();
|
|
/**
|
|
* @var array the HTML attributes for the container.
|
|
*/
|
|
public $htmlOptions = array();
|
|
/**
|
|
* @var array additional data to be passed to the view.
|
|
*/
|
|
public $viewData = array();
|
|
|
|
/**
|
|
* Initializes the widget.
|
|
*/
|
|
public function init()
|
|
{
|
|
$this->attachBehavior('TbWidget', new TbWidget);
|
|
$this->copyId();
|
|
TbHtml::addCssClass('collapse', $this->htmlOptions);
|
|
if (isset($this->parent)) {
|
|
TbArray::defaultValue('data-parent', $this->parent, $this->htmlOptions);
|
|
}
|
|
if (isset($this->toggle) && $this->toggle) {
|
|
TbHtml::addCssClass('in', $this->htmlOptions);
|
|
}
|
|
if (isset($this->view)) {
|
|
$controller = $this->getController();
|
|
if (isset($controller) && $controller->getViewFile($this->view) !== false) {
|
|
$this->content = $this->controller->renderPartial($this->view, $this->viewData, true);
|
|
}
|
|
}
|
|
echo TbHtml::openTag($this->tagName, $this->htmlOptions);
|
|
echo $this->content;
|
|
}
|
|
|
|
/**
|
|
* Runs the widget.
|
|
*/
|
|
public function run()
|
|
{
|
|
echo CHtml::closeTag($this->tagName);
|
|
$selector = '#' . $this->htmlOptions['id'];
|
|
$this->registerEvents($selector, $this->events);
|
|
}
|
|
} |