Error:
PHP Fatal error: Class 'JView' not found in /home/myfolder/public_html/administrator/components/com_svm/helpers/mvc.php on line 80
Code from file:
// MVC
if (!class_exists('CkJController'))
{
//Sometimes Legacy classes can already been initializated
if (!class_exists('JController', false))
jimport('joomla.application.component.controller');
if (!class_exists('JModel', false))
jimport('joomla.application.component.model');
if (!class_exists('JViewLegacy', false))
jimport('legacy.view.legacy');
class CkJController extends JController{}
class CkJModel extends JModel{}
class CkJView extends JView{}
}