Exemplo n.º 1
0
 /**
  * Overrides the getView method, adding the plugin's layout path
  */
 public function getView($name = '', $type = '', $prefix = '', $config = array())
 {
     $view = parent::getView($name, $type, $prefix, $config);
     if (version_compare(JVERSION, '1.6.0', 'ge')) {
         // Joomla! 1.6+ code
         $view->addTemplatePath(JPATH_SITE . '/plugins/tienda/' . $this->_element . '/' . $this->_element . '/tmpl/');
     } else {
         $view->addTemplatePath(JPATH_SITE . '/plugins/tienda/' . $this->_element . '/tmpl/');
     }
     return $view;
 }