From 173a20fb725d49bf6de24a4afa43001f86375683 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 19 Sep 2008 20:04:17 +0000 Subject: [PATCH] Word 'money' removed because you can not just even refill ingame-money --- .gitattributes | 8 ++++---- application/ship-simu/config.php | 15 +++++++++------ ...lAction.php => class_WebLoginRefillAction.php} | 0 ...Command.php => class_WebRefillFormCommand.php} | 0 ...lPageFilter.php => class_RefillPageFilter.php} | 0 ...php => class_RefillRequestValidatorFilter.php} | 0 6 files changed, 13 insertions(+), 10 deletions(-) rename application/ship-simu/main/actions/web/{class_WebLoginMoneyRefillAction.php => class_WebLoginRefillAction.php} (100%) rename application/ship-simu/main/commands/web/{class_WebMoneyRefillFormCommand.php => class_WebRefillFormCommand.php} (100%) rename application/ship-simu/main/filter/page/{class_MoneyRefillPageFilter.php => class_RefillPageFilter.php} (100%) rename application/ship-simu/main/filter/validator/{class_MoneyRefillRequestValidatorFilter.php => class_RefillRequestValidatorFilter.php} (100%) diff --git a/.gitattributes b/.gitattributes index aaa38f0..5dbb67a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -105,7 +105,7 @@ application/ship-simu/main/actions/ship-simu/class_ShipSimuProfileAction.php -te application/ship-simu/main/actions/web/.htaccess -text application/ship-simu/main/actions/web/class_WebLogin -text application/ship-simu/main/actions/web/class_WebLoginCompanyAction.php -text -application/ship-simu/main/actions/web/class_WebLoginMoneyRefillAction.php -text +application/ship-simu/main/actions/web/class_WebLoginRefillAction.php -text application/ship-simu/main/bank/.htaccess -text application/ship-simu/main/bank/class_MoneyBank.php -text application/ship-simu/main/class_ -text @@ -115,7 +115,7 @@ application/ship-simu/main/class_Merchant.php -text application/ship-simu/main/class_WorksContract.php -text application/ship-simu/main/commands/.htaccess -text application/ship-simu/main/commands/web/.htaccess -text -application/ship-simu/main/commands/web/class_WebMoneyRefillFormCommand.php -text +application/ship-simu/main/commands/web/class_WebRefillFormCommand.php -text application/ship-simu/main/commands/web/class_WebShipsimuGuestLoginCommand.php -text application/ship-simu/main/commands/web/class_WebShipsimuProfileCommand.php -text application/ship-simu/main/commands/web/class_WebShipsimuRegisterCommand.php -text @@ -142,9 +142,9 @@ application/ship-simu/main/factories/.htaccess -text application/ship-simu/main/factories/class_ShipSimuWebNewsFactory.php -text application/ship-simu/main/filter/.htaccess -text application/ship-simu/main/filter/page/.htaccess -text -application/ship-simu/main/filter/page/class_MoneyRefillPageFilter.php -text +application/ship-simu/main/filter/page/class_RefillPageFilter.php -text application/ship-simu/main/filter/validator/.htaccess -text -application/ship-simu/main/filter/validator/class_MoneyRefillRequestValidatorFilter.php -text +application/ship-simu/main/filter/validator/class_RefillRequestValidatorFilter.php -text application/ship-simu/main/goverment/.htaccess -text application/ship-simu/main/goverment/class_SimplifiedGoverment.php -text application/ship-simu/main/login/.htaccess -text diff --git a/application/ship-simu/config.php b/application/ship-simu/config.php index 84c14b6..f2dc84a 100644 --- a/application/ship-simu/config.php +++ b/application/ship-simu/config.php @@ -146,7 +146,7 @@ $cfg->setConfigEntry('user_status_confirmed_class', "UserStatusConfimedUpdateFil $cfg->setConfigEntry('captcha_encrypt_validator_class', "CaptchaEncryptFilter"); // CFG: REFILL-REQUEST-VALIDATOR-CLASS -$cfg->setConfigEntry('refill_request_validator_class', "MoneyRefillRequestValidatorFilter"); +$cfg->setConfigEntry('refill_request_validator_class', "RefillRequestValidatorFilter"); // CFG: CAPTCHA-GUEST-VERIFIER-CLASS $cfg->setConfigEntry('captcha_guest_verifier_class', "GraphicalCodeCaptchaVerifierFilter"); @@ -164,7 +164,7 @@ $cfg->setConfigEntry('captcha_refill_verifier_class', "GraphicalCodeCaptchaVerif $cfg->setConfigEntry('confirm_code_verifier_class', "ConfirmCodeVerifierFilter"); // CFG: REFILL-PAGE-FILTER -$cfg->setConfigEntry('refill_page_class', "MoneyRefillPageFilter"); +$cfg->setConfigEntry('refill_page_class', "RefillPageFilter"); // CFG: NEWS-HOME-LIMIT $cfg->setConfigEntry('news_home_limit', 10); @@ -217,8 +217,8 @@ $cfg->setConfigEntry('shipsimu_user_login_captcha', "GraphicalCodeCaptcha"); // CFG: SHIPSIMU-GUEST-LOGIN-CAPTCHA $cfg->setConfigEntry('shipsimu_guest_login_captcha', "GraphicalCodeCaptcha"); -// CFG: MONEY-REFILL-FORM-CAPTCHA -$cfg->setConfigEntry('money_refill_form_captcha', "GraphicalCodeCaptcha"); +// CFG: REFILL-FORM-CAPTCHA +$cfg->setConfigEntry('refill_form_captcha', "GraphicalCodeCaptcha"); // CFG: CAPTCHA-STRING-LENGTH $cfg->setConfigEntry('captcha_string_length', 5); @@ -238,8 +238,8 @@ $cfg->setConfigEntry('shipsimu_user_login_captcha_secured', "Y"); // CFG: SHIPSIMU-GUEST-LOGIN-CAPTCHA-SECURED $cfg->setConfigEntry('shipsimu_guest_login_captcha_secured', "Y"); -// CFG: MONEY-REFILL-FORM-CAPTCHA-SECURED -$cfg->setConfigEntry('money_refill_form_captcha_secured', "Y"); +// CFG: REFILL-FORM-CAPTCHA-SECURED +$cfg->setConfigEntry('refill_form_captcha_secured', "Y"); // CFG: BLOCK-SHOWS-REGISTRATION $cfg->setConfigEntry('block_shows_registration', "Y"); @@ -295,5 +295,8 @@ $cfg->setConfigEntry('bank_class', "MoneyBank"); // CFG: REFILL-PAGE-ACTIVE $cfg->setConfigEntry('refill_page_active', "Y"); +// CFG: REFILL-PAGE-MIN-CURRENCY-AMOUNT +$cfg->setConfigEntry('refill_page_min_currency_amount', 1000); + // [EOF] ?> diff --git a/application/ship-simu/main/actions/web/class_WebLoginMoneyRefillAction.php b/application/ship-simu/main/actions/web/class_WebLoginRefillAction.php similarity index 100% rename from application/ship-simu/main/actions/web/class_WebLoginMoneyRefillAction.php rename to application/ship-simu/main/actions/web/class_WebLoginRefillAction.php diff --git a/application/ship-simu/main/commands/web/class_WebMoneyRefillFormCommand.php b/application/ship-simu/main/commands/web/class_WebRefillFormCommand.php similarity index 100% rename from application/ship-simu/main/commands/web/class_WebMoneyRefillFormCommand.php rename to application/ship-simu/main/commands/web/class_WebRefillFormCommand.php diff --git a/application/ship-simu/main/filter/page/class_MoneyRefillPageFilter.php b/application/ship-simu/main/filter/page/class_RefillPageFilter.php similarity index 100% rename from application/ship-simu/main/filter/page/class_MoneyRefillPageFilter.php rename to application/ship-simu/main/filter/page/class_RefillPageFilter.php diff --git a/application/ship-simu/main/filter/validator/class_MoneyRefillRequestValidatorFilter.php b/application/ship-simu/main/filter/validator/class_RefillRequestValidatorFilter.php similarity index 100% rename from application/ship-simu/main/filter/validator/class_MoneyRefillRequestValidatorFilter.php rename to application/ship-simu/main/filter/validator/class_RefillRequestValidatorFilter.php -- 2.39.2