Example #1
0
 /**
  * Constructor, set internal vars
  * @param $app
  */
 public function __construct($app)
 {
     // load libs
     jimport('joomla.filesystem.file');
     jimport('joomla.filesystem.folder');
     // set internal vars
     $this->app = $app;
     $this->_name = strtolower(basename(get_class($this), 'Helper'));
     $this->_application = $app->zoo->getApplication();
     $this->_rendererPath = $this->_application->getPath() . '/templates/' . $this->_application->params->get('template') . '/renderer';
 }