mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
147 lines
3.6 KiB
PHP
147 lines
3.6 KiB
PHP
<?php
|
|
/**
|
|
* TbAlert 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
|
|
*/
|
|
|
|
/**
|
|
* Bootstrap alert widget.
|
|
* @see http://twitter.github.com/bootstrap/javascript.html#alerts
|
|
*/
|
|
class TbAlert extends CWidget
|
|
{
|
|
// Alert types.
|
|
const TYPE_SUCCESS = 'success';
|
|
const TYPE_INFO = 'info';
|
|
const TYPE_WARNING = 'warning';
|
|
const TYPE_ERROR = 'error';
|
|
const TYPE_DANGER = 'danger'; // same as error
|
|
|
|
/**
|
|
* @var array the alerts configurations.
|
|
*/
|
|
public $alerts;
|
|
/**
|
|
* @var string|boolean the close link text. If this is set false, no close link will be displayed.
|
|
*/
|
|
public $closeText = '×';
|
|
/**
|
|
* @var boolean indicates whether the alert should be an alert block. Defaults to 'true'.
|
|
*/
|
|
public $block = true;
|
|
/**
|
|
* @var boolean indicates whether alerts should use transitions. Defaults to 'true'.
|
|
*/
|
|
public $fade = true;
|
|
/**
|
|
* @var string[] the Javascript event handlers.
|
|
*/
|
|
public $events = array();
|
|
/**
|
|
* @var array the HTML attributes for the widget container.
|
|
*/
|
|
public $htmlOptions = array();
|
|
|
|
private static $_containerId = 0;
|
|
|
|
/**
|
|
* Initializes the widget.
|
|
*/
|
|
public function init()
|
|
{
|
|
if (!isset($this->htmlOptions['id']))
|
|
$this->htmlOptions['id'] = $this->getId();
|
|
|
|
if (is_string($this->alerts))
|
|
$this->alerts = array($this->alerts);
|
|
|
|
// Display all alert types by default.
|
|
if (!isset($this->alerts))
|
|
$this->alerts = array(self::TYPE_SUCCESS, self::TYPE_INFO, self::TYPE_WARNING, self::TYPE_ERROR, self::TYPE_DANGER);
|
|
}
|
|
|
|
/**
|
|
* Runs the widget.
|
|
*/
|
|
public function run()
|
|
{
|
|
$id = $this->htmlOptions['id'];
|
|
|
|
echo CHtml::openTag('div', $this->htmlOptions);
|
|
|
|
foreach ($this->alerts as $type => $alert)
|
|
{
|
|
if (is_string($alert))
|
|
{
|
|
$type = $alert;
|
|
$alert = array();
|
|
}
|
|
|
|
if (isset($alert['visible']) && $alert['visible'] === false)
|
|
continue;
|
|
|
|
if (Yii::app()->user->hasFlash($type))
|
|
{
|
|
$classes = array('alert in');
|
|
|
|
if (!isset($alert['block']))
|
|
$alert['block'] = $this->block;
|
|
|
|
if ($alert['block'] === true)
|
|
$classes[] = 'alert-block';
|
|
|
|
if (!isset($alert['fade']))
|
|
$alert['fade'] = $this->fade;
|
|
|
|
if ($alert['fade'] === true)
|
|
$classes[] = 'fade';
|
|
|
|
$validTypes = array(self::TYPE_SUCCESS, self::TYPE_INFO, self::TYPE_WARNING, self::TYPE_ERROR, self::TYPE_DANGER);
|
|
|
|
if (in_array($type, $validTypes))
|
|
$classes[] = 'alert-'.$type;
|
|
|
|
if (!isset($alert['htmlOptions']))
|
|
$alert['htmlOptions'] = array();
|
|
|
|
$classes = implode(' ', $classes);
|
|
if (isset($alert['htmlOptions']['class']))
|
|
$alert['htmlOptions']['class'] .= ' '.$classes;
|
|
else
|
|
$alert['htmlOptions']['class'] = $classes;
|
|
|
|
echo CHtml::openTag('div', $alert['htmlOptions']);
|
|
|
|
if ($this->closeText !== false && !isset($alert['closeText']))
|
|
$alert['closeText'] = $this->closeText;
|
|
else
|
|
$alert['closeText'] = false;
|
|
|
|
if (isset($alert['closeText']) && $alert['closeText'] !== false)
|
|
echo '<a class="close" data-dismiss="alert">'.$alert['closeText'].'</a>';
|
|
|
|
echo Yii::app()->user->getFlash($type);
|
|
|
|
echo '</div>';
|
|
}
|
|
}
|
|
|
|
echo '</div>';
|
|
|
|
$selector = "#{$id} .alert";
|
|
$id .= '_'.self::$_containerId++;
|
|
|
|
/** @var CClientScript $cs */
|
|
$cs = Yii::app()->getClientScript();
|
|
$cs->registerScript(__CLASS__.'#'.$id, "jQuery('{$selector}').alert();");
|
|
|
|
foreach ($this->events as $name => $handler)
|
|
{
|
|
$handler = CJavaScript::encode($handler);
|
|
$cs->registerScript(__CLASS__.'#'.$id.'_'.$name, "jQuery('{$selector}').on('{$name}', {$handler});");
|
|
}
|
|
}
|
|
}
|