예제 #1
0
 /**
  * Redirect to the 404 page
  * Page URL taken from config file
  * To be called statically 
  */
 public static function error404()
 {
     $config = Core_Framework_Singleton::config()->ini;
     Core_Framework_Helper::redirect($config['cross_site']['error404']);
 }
예제 #2
0
 /**
  * Simple header redirect to be called statically
  * @param string $url 
  */
 public static function redirect($url)
 {
     Core_Framework_Helper::redirect($url);
 }