/**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     if (!JFactory::getUser()->authorise('core.admin')) {
         JFactory::getApplication()->redirect('index.php', JText::_('JERROR_ALERTNOAUTHOR'));
         return;
     }
     parent::__construct();
 }
 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     VmConfig::loadJLang('com_virtuemart_config');
     if (!JFactory::getUser()->authorise('core.admin')) {
         $app = JFactory::getApplication();
         JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR'));
         $app->redirect('index.php');
         return;
     }
     parent::__construct();
 }
Exemplo n.º 3
0
 /**
  * Method to display the view
  *
  * @access public
  * @author
  */
 function __construct()
 {
     parent::__construct('virtuemart_user_id');
 }
Exemplo n.º 4
0
 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     parent::__construct('virtuemart_custom_id');
 }
	/**
	 * Method to display the view
	 *
	 * @access	public
	 * @author
	 */
	function __construct() {
		parent::__construct('virtuemart_manufacturercategories_id');

	}
Exemplo n.º 6
0
 /**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     VmConfig::loadJLang('com_virtuemart_config');
     parent::__construct();
 }
Exemplo n.º 7
0
 /**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     parent::__construct('virtuemart_shoppergroup_id');
     $this->registerTask('default', 'makeDefault');
 }
Exemplo n.º 8
0
 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     parent::__construct();
 }
Exemplo n.º 9
0
 /**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     parent::__construct();
     $task = JRequest::getVar('task');
     vmdebug('cconstruct', $task);
 }
Exemplo n.º 10
0
 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     parent::__construct('virtuemart_product_id');
     $this->addViewPath(VMPATH_ADMIN . DS . 'views');
 }
Exemplo n.º 11
0
	/**
	 * Method to display the view
	 *
	 * @access	public
	 * @author RickG, Max Milbers
	 */
	function __construct() {
		parent::__construct('virtuemart_state_id');

		$country = vRequest::getInt('virtuemart_country_id', 0);
		$this->redirectPath .= ($country > 0) ? '&virtuemart_country_id=' . $country : '';
	}
Exemplo n.º 12
0
	/**
	 * Method to display the view
	 *
	 * @access	public
	 */
	function __construct() {
		parent::__construct('virtuemart_shoppergroup_id');
	}
Exemplo n.º 13
0
 /**
  * Method to display the view
  *
  * @access public
  * @author
  */
 function __construct()
 {
     VmConfig::loadJLang('com_virtuemart_shoppers', TRUE);
     parent::__construct('virtuemart_user_id');
 }
 function __construct($config = array())
 {
     parent::__construct('virtuemart_orderstate_id', $config);
 }
 /**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     parent::__construct();
     $this->registerTask('default', 'makeDefault');
 }
Exemplo n.º 16
0
 /**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     parent::__construct();
     $task = vRequest::getVar('task');
 }
Exemplo n.º 17
0
 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     parent::__construct('virtuemart_product_id');
     $this->addViewPath(JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_virtuemart' . DS . 'views');
 }
Exemplo n.º 18
0
 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     VmConfig::loadJLang('com_virtuemart_media');
     parent::__construct('virtuemart_media_id');
 }
Exemplo n.º 19
0
 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     VmConfig::loadJLang('com_virtuemart_orders', TRUE);
     parent::__construct();
 }
Exemplo n.º 20
0
 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     parent::__construct('virtuemart_media_id');
 }