Removed Modal::body.

This commit is contained in:
Qiang Xue
2013-05-24 09:55:57 -04:00
parent 21533ad305
commit c16bd75698

View File

@@ -14,18 +14,6 @@ use yii\helpers\Html;
/**
* Modal renders a modal window that can be toggled by clicking on a button.
*
* For example,
*
* ~~~php
* echo Modal::widget(array(
* 'header' => '<h2>Hello world</h2>',
* 'body' => 'Say hello...',
* 'toggleButton' => array(
* 'label' => 'click me',
* ),
* ));
* ~~~
*
* The following example will show the content enclosed between the [[begin()]]
* and [[end()]] calls within the modal window:
*
@@ -53,12 +41,6 @@ class Modal extends Widget
* @var string the header content in the modal window.
*/
public $header;
/**
* @var string the body content in the modal window. Note that anything between
* the [[begin()]] and [[end()]] calls of the Modal widget will also be treated
* as the body content, and will be rendered before this.
*/
public $body;
/**
* @var string the footer content in the modal window.
*/
@@ -154,7 +136,7 @@ class Modal extends Widget
*/
protected function renderBodyEnd()
{
return $this->body . "\n" . Html::endTag('div');
return Html::endTag('div');
}
/**