I want to implement a language Setter for all Controllers and need to run this method before the Routing to the Controller -> the front Controller.
If have implemented a method in my Controller Class, but for some usages it must be run earlier before controller initilisation
class Controller extends CController
{
public function __construct($id, $module = null)
{
// Set the application language
if (isset($_GET['language']))
{
$lang = $_GET['language'];