X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fconfig.php;h=dceca29aec6447fb7f0f9c0e5fec61061d51dbb1;hp=2976a8bc4ef3f579f61234686cc4ddd59db54b8e;hb=d527a312ec4b2983fc0ecda2179ce335c1a5a1f9;hpb=116c558e7c0d80359a0c4ac0dbd4decff51bdcf2 diff --git a/application/ship-simu/config.php b/application/ship-simu/config.php index 2976a8b..dceca29 100644 --- a/application/ship-simu/config.php +++ b/application/ship-simu/config.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, this is free software * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -25,8 +25,11 @@ // Get a configuration instance for shorter lines $cfg = FrameworkConfiguration::getInstance(); -// CFG: DEFAULT-COMMAND -$cfg->setConfigEntry('default_command', "home"); +// CFG: DEFAULT-WEB-COMMAND +$cfg->setConfigEntry('default_web_command', "home"); + +// CFG: DEFAULT-IMAGE-COMMAND +$cfg->setConfigEntry('default_image_command', "build"); // CFG: PAGE-WITH-NEWS $cfg->setConfigEntry('page_with_news', "home"); @@ -124,6 +127,18 @@ $cfg->setConfigEntry('user_auth_class', "UserAuthFilter"); // CFG: USER-UPDATE-CLASS $cfg->setConfigEntry('user_update_class', "UserUpdateFilter"); +// CFG: CAPTCHA-ENCRYPT-VALIDATOR-CLASS +$cfg->setConfigEntry('captcha_encrypt_validator_class', "CaptchaEncryptFilter"); + +// CFG: CAPTCHA-GUEST-VERIFIER-CLASS +$cfg->setConfigEntry('captcha_guest_verifier_class', "GraphicalCodeCaptchaVerifierFilter"); + +// CFG: CAPTCHA-USER-VERIFIER-CLASS +$cfg->setConfigEntry('captcha_user_verifier_class', "GraphicalCodeCaptchaVerifierFilter"); + +// CFG: CAPTCHA-REGISTER-VERIFIER-CLASS +$cfg->setConfigEntry('captcha_register_verifier_class', "GraphicalCodeCaptchaVerifierFilter"); + // CFG: NEWS-HOME-LIMIT $cfg->setConfigEntry('news_home_limit', 10); @@ -149,10 +164,10 @@ $cfg->setConfigEntry('email_change_confirmation', "Y"); $cfg->setConfigEntry('guest_login_allowed', "Y"); // CFG: GUEST-LOGIN-USERNAME -$cfg->setConfigEntry('guest_login_username', "guest"); +$cfg->setConfigEntry('guest_login_user', "guest"); // CFG: GUEST-LOGIN-PASS -$cfg->setConfigEntry('guest_login_pass', "guest"); +$cfg->setConfigEntry('guest_login_passwd', "guest"); // CFG: LOGIN-WELCOME-ACTION-CLASS $cfg->setConfigEntry('login_welcome_action_class', "ShipSimuLoginAction"); @@ -193,5 +208,8 @@ $cfg->setConfigEntry('shipsimu_user_login_captcha_secured', "Y"); // CFG: SHIPSIMU-GUEST-LOGIN-CAPTCHA-SECURED $cfg->setConfigEntry('shipsimu_guest_login_captcha_secured', "Y"); +// CFG: BLOCK-SHOWS-REGISTRATION +$cfg->setConfigEntry('block_shows_registration', "Y"); + // [EOF] ?>