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.
		
		
		
		
			
				
					228 lines
				
				6.0 KiB
			
		
		
			
		
	
	
					228 lines
				
				6.0 KiB
			| 
								 
											13 years ago
										 
									 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @link http://www.yiiframework.com/
							 | 
						||
| 
								 | 
							
								 * @copyright Copyright (c) 2008 Yii Software LLC
							 | 
						||
| 
								 | 
							
								 * @license http://www.yiiframework.com/license/
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								namespace yii\bootstrap;
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								use Yii;
							 | 
						||
| 
								 | 
							
								use yii\helpers\ArrayHelper;
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								use yii\helpers\Html;
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 * Modal renders a modal window that can be toggled by clicking on a button.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 *
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 * The following example will show the content enclosed between the [[begin()]]
							 | 
						||
| 
								 | 
							
								 * and [[end()]] calls within the modal window:
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * ~~~php
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								 * Modal::begin([
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 *     'header' => '<h2>Hello world</h2>',
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								 *     'toggleButton' => ['label' => 'click me'],
							 | 
						||
| 
								 | 
							
								 * ]);
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * echo 'Say hello...';
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * Modal::end();
							 | 
						||
| 
								 | 
							
								 * ~~~
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 * @see http://twitter.github.io/bootstrap/javascript.html#modals
							 | 
						||
| 
								 | 
							
								 * @author Antonio Ramirez <amigo.cobos@gmail.com>
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 * @author Qiang Xue <qiang.xue@gmail.com>
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								 * @since 2.0
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								class Modal extends Widget
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								{
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * @var string the header content in the modal window.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									public $header;
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * @var string the footer content in the modal window.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									public $footer;
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * @var array the options for rendering the close button tag.
							 | 
						||
| 
								 | 
							
									 * The close button is displayed in the header of the modal window. Clicking
							 | 
						||
| 
								 | 
							
									 * on the button will hide the modal window. If this is null, no close button will be rendered.
							 | 
						||
| 
								 | 
							
									 *
							 | 
						||
| 
								 | 
							
									 * The following special options are supported:
							 | 
						||
| 
								 | 
							
									 *
							 | 
						||
| 
								 | 
							
									 * - tag: string, the tag name of the button. Defaults to 'button'.
							 | 
						||
| 
								 | 
							
									 * - label: string, the label of the button. Defaults to '×'.
							 | 
						||
| 
								 | 
							
									 *
							 | 
						||
| 
								 | 
							
									 * The rest of the options will be rendered as the HTML attributes of the button tag.
							 | 
						||
| 
								 | 
							
									 * Please refer to the [Modal plugin help](http://twitter.github.com/bootstrap/javascript.html#modals)
							 | 
						||
| 
								 | 
							
									 * for the supported HTML attributes.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public $closeButton = [];
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * @var array the options for rendering the toggle button tag.
							 | 
						||
| 
								 | 
							
									 * The toggle button is used to toggle the visibility of the modal window.
							 | 
						||
| 
								 | 
							
									 * If this property is null, no toggle button will be rendered.
							 | 
						||
| 
								 | 
							
									 *
							 | 
						||
| 
								 | 
							
									 * The following special options are supported:
							 | 
						||
| 
								 | 
							
									 *
							 | 
						||
| 
								 | 
							
									 * - tag: string, the tag name of the button. Defaults to 'button'.
							 | 
						||
| 
								 | 
							
									 * - label: string, the label of the button. Defaults to 'Show'.
							 | 
						||
| 
								 | 
							
									 *
							 | 
						||
| 
								 | 
							
									 * The rest of the options will be rendered as the HTML attributes of the button tag.
							 | 
						||
| 
								 | 
							
									 * Please refer to the [Modal plugin help](http://twitter.github.com/bootstrap/javascript.html#modals)
							 | 
						||
| 
								 | 
							
									 * for the supported HTML attributes.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									public $toggleButton;
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * Initializes the widget.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 | 
							
									public function init()
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										parent::init();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										$this->initOptions();
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										echo $this->renderToggleButton() . "\n";
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										echo Html::beginTag('div', $this->options) . "\n";
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										echo Html::beginTag('div', ['class' => 'modal-dialog']) . "\n";
							 | 
						||
| 
								 | 
							
										echo Html::beginTag('div', ['class' => 'modal-content']) . "\n";
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										echo $this->renderHeader() . "\n";
							 | 
						||
| 
								 | 
							
										echo $this->renderBodyBegin() . "\n";
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * Renders the widget.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 | 
							
									public function run()
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										echo "\n" . $this->renderBodyEnd();
							 | 
						||
| 
								 | 
							
										echo "\n" . $this->renderFooter();
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										echo "\n" . Html::endTag('div'); // modal-content
							 | 
						||
| 
								 | 
							
										echo "\n" . Html::endTag('div'); // modal-dialog
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										echo "\n" . Html::endTag('div');
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										$this->registerPlugin('modal');
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * Renders the header HTML markup of the modal
							 | 
						||
| 
								 | 
							
									 * @return string the rendering result
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									protected function renderHeader()
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										$button = $this->renderCloseButton();
							 | 
						||
| 
								 | 
							
										if ($button !== null) {
							 | 
						||
| 
								 | 
							
											$this->header = $button . "\n" . $this->header;
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
										if ($this->header !== null) {
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											return Html::tag('div', "\n" . $this->header . "\n", ['class' => 'modal-header']);
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										} else {
							 | 
						||
| 
								 | 
							
											return null;
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * Renders the opening tag of the modal body.
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * @return string the rendering result
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									protected function renderBodyBegin()
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										return Html::beginTag('div', ['class' => 'modal-body']);
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Renders the closing tag of the modal body.
							 | 
						||
| 
								 | 
							
									 * @return string the rendering result
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									protected function renderBodyEnd()
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										return Html::endTag('div');
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * Renders the HTML markup for the footer of the modal
							 | 
						||
| 
								 | 
							
									 * @return string the rendering result
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									protected function renderFooter()
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										if ($this->footer !== null) {
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											return Html::tag('div', "\n" . $this->footer . "\n", ['class' => 'modal-footer']);
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										} else {
							 | 
						||
| 
								 | 
							
											return null;
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * Renders the toggle button.
							 | 
						||
| 
								 | 
							
									 * @return string the rendering result
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									protected function renderToggleButton()
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										if ($this->toggleButton !== null) {
							 | 
						||
| 
								 | 
							
											$tag = ArrayHelper::remove($this->toggleButton, 'tag', 'button');
							 | 
						||
| 
								 | 
							
											$label = ArrayHelper::remove($this->toggleButton, 'label', 'Show');
							 | 
						||
| 
								 | 
							
											if ($tag === 'button' && !isset($this->toggleButton['type'])) {
							 | 
						||
| 
								 | 
							
												$this->toggleButton['type'] = 'button';
							 | 
						||
| 
								 | 
							
											}
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
											return Html::tag($tag, $label, $this->toggleButton);
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										} else {
							 | 
						||
| 
								 | 
							
											return null;
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 * Renders the close button.
							 | 
						||
| 
								 | 
							
									 * @return string the rendering result
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									protected function renderCloseButton()
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										if ($this->closeButton !== null) {
							 | 
						||
| 
								 | 
							
											$tag = ArrayHelper::remove($this->closeButton, 'tag', 'button');
							 | 
						||
| 
								 | 
							
											$label = ArrayHelper::remove($this->closeButton, 'label', '×');
							 | 
						||
| 
								 | 
							
											if ($tag === 'button' && !isset($this->closeButton['type'])) {
							 | 
						||
| 
								 | 
							
												$this->closeButton['type'] = 'button';
							 | 
						||
| 
								 | 
							
											}
							 | 
						||
| 
								 | 
							
											return Html::tag($tag, $label, $this->closeButton);
							 | 
						||
| 
								 | 
							
										} else {
							 | 
						||
| 
								 | 
							
											return null;
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Initializes the widget options.
							 | 
						||
| 
								 | 
							
									 * This method sets the default values for various options.
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									protected function initOptions()
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$this->options = array_merge([
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											'class' => 'fade',
							 | 
						||
| 
								 | 
							
											'role' => 'dialog',
							 | 
						||
| 
								 | 
							
											'tabindex' => -1,
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										], $this->options);
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										Html::addCssClass($this->options, 'modal');
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										
							 | 
						||
| 
								 | 
							
										if ($this->clientOptions !== false) {
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											$this->clientOptions = array_merge(['show' => false], $this->clientOptions);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										}
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
										if ($this->closeButton !== null) {
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											$this->closeButton = array_merge([
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
												'data-dismiss' => 'modal',
							 | 
						||
| 
								 | 
							
												'aria-hidden' => 'true',
							 | 
						||
| 
								 | 
							
												'class' => 'close',
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											], $this->closeButton);
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
										}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
										if ($this->toggleButton !== null) {
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											$this->toggleButton = array_merge([
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
												'data-toggle' => 'modal',
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											], $this->toggleButton);
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
											if (!isset($this->toggleButton['data-target']) && !isset($this->toggleButton['href'])) {
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
												$this->toggleButton['data-target'] = '#' . $this->options['id'];
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
											}
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 
											13 years ago
										 
									 | 
							
								}
							 |