/**
  * Get all informations and save them in class
  */
 public function getinfo()
 {
     if (empty(self::$currentVariables)) {
         $url = new PWEL_URL();
         self::$currentVariables = $url->locateUrlVariables();
     }
     self::$currentController = PWEL_ROUTING::$ControllerInfo;
     self::$currentDisplayedFile = PWEL_CONTROLLER::$displayedFile;
     self::$currentComponents = PWEL_COMPONENTS::$components;
     self::$currentRegisteredObjects = PWEL::$registeredObjects;
     self::$currentConfig = PWEL::$config;
 }