getType(); $viewName = vRequest::getCmd('view', 'virtuemart'); $view = $this->getView($viewName, $viewType); $view->assignRef('document', $document); $view->display(); return $this; } public function feed(){ if(!class_exists( 'vmRSS' )) require(VMPATH_ADMIN.'/helpers/vmrss.php'); $this->virtuemartFeed = vmRSS::getVirtueMartRssFeed(); $this->extensionsFeed = vmRSS::getExtensionsRssFeed(); $document = vFactory::getDocument(); $headData = $document->getHeadData(); $headData['scripts'] = array(); $document->setHeadData($headData); ob_clean(); ob_start(); include(VMPATH_SITE.DS.'views'.DS.'virtuemart'.DS.'tmpl'.DS.'feed.php'); echo ob_get_clean(); jExit(); } public function keepalive(){ jExit(); } } //pure php no closing tag