yii\web\View::endBody PHP 메소드

endBody() 공개 메소드

Marks the ending of an HTML body section.
public endBody ( )
    public function endBody()
    {
        $this->trigger(self::EVENT_END_BODY);
        echo self::PH_BODY_END;
        foreach (array_keys($this->assetBundles) as $bundle) {
            $this->registerAssetFiles($bundle);
        }
    }

Usage Example

예제 #1
0
파일: Adm.php 프로젝트: richardcj/yii2-adm
 /**
  * Marks the ending of an HTML body section.
  * @param \yii\web\View $view the view to be registered with
  */
 public function endBody($view)
 {
     $view->endBody();
     $this->trigger(self::EVENT_END_BODY);
 }