BcBaserHelper::content PHP Method

content() public method

レイアウトテンプレートで利用する
public content ( ) : void
return void
    public function content()
    {
        /*** contentHeader ***/
        $this->dispatchEvent('contentHeader', null, array('layer' => 'View', 'class' => '', 'plugin' => ''));
        /*** Controller.contentHeader ***/
        $this->dispatchEvent('contentHeader', null, array('layer' => 'View', 'class' => $this->_View->name));
        echo $this->_View->fetch('content');
        /*** contentFooter ***/
        $event = $this->dispatchEvent('contentFooter', null, array('layer' => 'View', 'class' => '', 'plugin' => ''));
        /*** Controller.contentFooter ***/
        $event = $this->dispatchEvent('contentFooter', null, array('layer' => 'View', 'class' => $this->_View->name));
    }