Beispiel #1
0
 public function __construct()
 {
     if (!php_Boot::$skip_constructor) {
         $p = realpath(".");
         if ($p === false) {
             system_base_Wet_base::$root_directory = null;
         } else {
             system_base_Wet_base::$root_directory = $p;
         }
         system_base_Wet_base::$root_directory .= "/lib";
         system_base_Wet_base::$asset_path = _hx_string_or_null(system_base_Wet_base::$root_directory) . "/" . "system/application/assets/";
         system_base_Wet_base::$cache_path = _hx_string_or_null(system_base_Wet_base::$root_directory) . "/" . "system/application/cache/";
         system_base_Wet_base::$datastore_path = _hx_string_or_null(system_base_Wet_base::$root_directory) . "/" . "system/application/datastore/";
         system_base_Wet_base::$views_path = _hx_string_or_null(system_base_Wet_base::$root_directory) . "/" . "system/application/views/";
         system_base_Wet_base::$conf_path = _hx_string_or_null(system_base_Wet_base::$root_directory) . "/" . "system/application/config/";
     }
 }