'mysql', 'database_name' => $database['name'], 'server' => $database['host'], 'username' => $database['user'], 'password' => $database['password'], 'charset' => 'utf8' ] ); if ( file_exists( 'plugins/special-actions.php' ) ) include 'plugins/special-actions.php'; if ( !$lang_id = \S::get_session( 'current-lang' ) ) { $lang_id = \front\factory\Languages::default_language(); \S::set_session( 'current-lang', $lang_id ); } if ( !$lang = \S::get_session( 'lang-' . $lang_id ) ) { $lang = \front\factory\Languages::lang_translations( $lang_id ); \S::set_session( 'lang-' . $lang_id, $lang ); } $settings = \front\factory\Settings::settings_details(); /* wysyłanie powiadomień o wygasaniu profilu */ \front\factory\GlobelusCron::email_profile_expiration(); /* wysyłanie powiadomień o wygaśnięciu profilu */ \front\factory\GlobelusCron::email_profile_expired(); /* wysyłanie powiadomień o usuwaniu profilu */ \front\factory\GlobelusCron::email_profile_delete(); /* usuwanie nieaktywnych kont */ \front\factory\GlobelusCron::delete_inactive_profiles(); /* wysyłanie powiadomień o wygasaniu ogłoszenia */ \front\factory\GlobelusCron::email_advert_expiration(); /* wysyłanie powiadomień o wygaśnięciu ogłoszenia */ \front\factory\GlobelusCron::email_advert_expired(); /* wyłączanie wyróżnionych profili */ \front\factory\GlobelusCron::disable_profile_highlights(); /* wyłączanie wyróżnionych ogłoszeń */ \front\factory\GlobelusCron::disable_adverts_highlights(); /* wyłączanie polecanych ogłoszeń */ \front\factory\GlobelusCron::disable_adverts_main_page(); /* usuwanie polskich znaków */ \front\factory\GlobelusCron::nopl(); /* usuwanie starych ogłoszeń */ \front\factory\GlobelusCron::disable_old_adverts(); /* wyłączanie dostępu do bazy kandydatów */ \front\factory\GlobelusCron::disable_cv_access(); /* uzupełnianie tabeli globelus_proposed_candidates */ \front\factory\GlobelusCron::fill_proposed_candidates();