- <?
- /**
- * Setup of the Form system constants
- * Use the default value if not defined
- *
- * @package form
- * @filesource
- * @see HTML_FORM_RESOURCE_PATH/Setup.php
- * @copyright (c) http://Finn-Rasmussen.com
- * @license http://Finn-Rasmussen.com/license/ myPHP License conditions
- * @author http://Finn-Rasmussen.com
- * @version 1.9
- * @since 21-oct-2005
- */
-
- /**
- * @global String BUTTON_SEND_TEXT The Button Send Text
- */
- if (!defined('BUTTON_SEND_TEXT')) {
- define('BUTTON_SEND_TEXT' ,'Send');
- }
- if (!defined('BUTTON_RESET_TEXT')) {
- define('BUTTON_RESET_TEXT' ,'Reset');
- }
- if (!defined('BUTTON_CANCEL_TEXT')) {
- define('BUTTON_CANCEL_TEXT','Cancel');
- }
- if (!defined('BUTTON_SUBMIT_TEXT')) {
- define('BUTTON_SUBMIT_TEXT','Submit');
- }
- if (!defined('BUTTON_CANCEL_ONCLICK')) {
- define('BUTTON_CANCEL_ONCLICK','history.back();');
- }
- ?>