Bluz\Controller\Controller::__construct PHP 메소드

__construct() 공개 메소드

Constructor of Statement
public __construct ( string $module, string $controller )
$module string
$controller string
    public function __construct($module, $controller)
    {
        $this->module = $module;
        $this->controller = $controller;
        $this->template = $controller . '.phtml';
        // initial default helper path
        $this->addHelperPath(dirname(__FILE__) . '/Helper/');
    }