mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
68 lines
1.5 KiB
PHP
68 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* TbDetailView class file.
|
|
* @author Christoffer Niska <ChristofferNiska@gmail.com>
|
|
* @copyright Copyright © Christoffer Niska 2011-
|
|
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
|
|
* @package bootstrap.widgets
|
|
*/
|
|
|
|
Yii::import('zii.widgets.CDetailView');
|
|
|
|
/**
|
|
* Bootstrap Zii detail view.
|
|
*/
|
|
class TbDetailView extends CDetailView
|
|
{
|
|
// Table types.
|
|
const TYPE_STRIPED = 'striped';
|
|
const TYPE_BORDERED = 'bordered';
|
|
const TYPE_CONDENSED = 'condensed';
|
|
|
|
/**
|
|
* @var string|array the table type.
|
|
* Valid values are 'striped', 'bordered' and/or 'condensed'.
|
|
*/
|
|
public $type = array(self::TYPE_STRIPED, self::TYPE_CONDENSED);
|
|
/**
|
|
* @var string the URL of the CSS file used by this detail view.
|
|
* Defaults to false, meaning that no CSS will be included.
|
|
*/
|
|
public $cssFile = false;
|
|
|
|
/**
|
|
* Initializes the widget.
|
|
*/
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
|
|
$classes = array('table');
|
|
|
|
if (isset($this->type))
|
|
{
|
|
if (is_string($this->type))
|
|
$this->type = explode(' ', $this->type);
|
|
|
|
$validTypes = array(self::TYPE_STRIPED, self::TYPE_BORDERED, self::TYPE_CONDENSED);
|
|
|
|
if (!empty($this->type))
|
|
{
|
|
foreach ($this->type as $type)
|
|
{
|
|
if (in_array($type, $validTypes))
|
|
$classes[] = 'table-'.$type;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!empty($classes))
|
|
{
|
|
$classes = implode(' ', $classes);
|
|
if (isset($this->htmlOptions['class']))
|
|
$this->htmlOptions['class'] .= ' '.$classes;
|
|
else
|
|
$this->htmlOptions['class'] = $classes;
|
|
}
|
|
}
|
|
}
|