yii\web\View::beginBody PHP Method

beginBody() public method

Marks the beginning of an HTML body section.
public beginBody ( )
    public function beginBody()
    {
        echo self::PH_BODY_BEGIN;
        $this->trigger(self::EVENT_BEGIN_BODY);
    }

Usage Example

Example #1
0
 /**
  * Marks the beginning of an HTML body section.
  * @param \yii\web\View $view the view to be registered with
  */
 public function beginBody($view)
 {
     $view->beginBody();
     $this->trigger(self::EVENT_BEGIN_BODY);
 }