Skip to content

Commit

Permalink
Update ApplicationConfig.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Gökhan Demir authored Jan 19, 2018
1 parent d909397 commit aaf4549
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lib/ApplicationConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ public static function sets() {
// for $_SESSION hash kick!
if (!strlen(session_id())) session_start();

// default setting
ApplicationI18n::init();

// configuration setting
$app_configuration = parse_ini_file(self::APPFILE);

Expand All @@ -37,6 +34,9 @@ public static function sets() {
throw new Exception("Uygulamanın yapılandırma dosyasında bilinmeyen parametre → " . $key);
}
}

// default setting
ApplicationI18n::init();
}

// veritabanı ayar dosyasını oku
Expand All @@ -45,17 +45,17 @@ public static function database() {
if (!file_exists(self::DATABASEFILE))
throw new Exception("Veritabanı ayar dosyası mevcut değil → " . self::DATABASEFILE);

return parse_ini_file(self::DATABASEFILE);
}
return parse_ini_file(self::DATABASEFILE);
}

// mail ayar dosyasını oku
public static function mailer() {

if (!file_exists(self::MAILERFILE))
throw new Exception("Mailer ayar dosyası mevcut değil → " . self::MAILERFILE);

return parse_ini_file(self::MAILERFILE);
}
return parse_ini_file(self::MAILERFILE);
}

// router dosyasını oku
public static function route() {
Expand All @@ -64,8 +64,8 @@ public static function route() {
throw new Exception("Yönlendirme ayar dosyası mevcut değil → " . self::ROUTESFILE);

// configuration routes load and route action dispatch
include self::ROUTESFILE;
}
include self::ROUTESFILE;
}

// yerel ayar dosyasını oku
public static function i18n($locale) {
Expand Down

0 comments on commit aaf4549

Please sign in to comment.