Browse Source

Removed Modal::body.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
c16bd75698
  1. 20
      framework/yii/bootstrap/Modal.php

20
framework/yii/bootstrap/Modal.php

@ -14,18 +14,6 @@ use yii\helpers\Html;
/** /**
* Modal renders a modal window that can be toggled by clicking on a button. * 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()]] * The following example will show the content enclosed between the [[begin()]]
* and [[end()]] calls within the modal window: * and [[end()]] calls within the modal window:
* *
@ -54,12 +42,6 @@ class Modal extends Widget
*/ */
public $header; 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. * @var string the footer content in the modal window.
*/ */
public $footer; public $footer;
@ -154,7 +136,7 @@ class Modal extends Widget
*/ */
protected function renderBodyEnd() protected function renderBodyEnd()
{ {
return $this->body . "\n" . Html::endTag('div'); return Html::endTag('div');
} }
/** /**

Loading…
Cancel
Save