namespace Common; class Controller_Common extends \Controller_Template { public $template = 'base';It doesn't want to use the template in the module and keeps trying to load the template from the app view directory.
public $template = 'common/base';or
public $template = 'common_base';to no avail. I am extending from this by using the following method.
class Controller_Welcome extends \Common\Controller_Common {which works perfectly if the base view is in the app directory. Anybody have any suggestions on this one? Thanks
It looks like you're new here. If you want to get involved, click one of these buttons!