Subversion Repositories php_library

Rev

Rev 1 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

<!-----------------------------------------------------------------------------
   Copyright 2006
   Daily Data, Inc.
   All rights reserved
   Name: $Id: contact_us_local.php,v 1.7 2006/11/30 03:58:26 rodolico Exp $
   Description:
      Local modifications for each domains contact_us functions

   $Date: 2006/11/30 03:58:26 $
   $Revision: 1.7 $
   Revision History:
      $Log: contact_us_local.php,v $
      Revision 1.7  2006/11/30 03:58:26  rodolico
      Beginning work on connection to payment center. Still needs a little work


------------------------------------------------------------------------------->
<?php

   $HEADER = 'Time Tracker Bug/Feature Report<br>
         <p>Use this for to report bugs and/or request enhancments</p>
          *Indicates required field
      </div>';
   $SUCCESS_MESSAGE = 'Thank you. Your e-mail has been sent and will be processed by our staff on the next business day. We appreciate your comments and suggestions';
   $FAILURE_MESSAGE = "I'm sorry, your message was not able to be sent, please try again later";
   $WINDOW_WIDTH = 620;
   $WINDOW_HEIGHT = 620;
   define (DATABASE,'timetracker');
   switch ($_SERVER['SERVER_NAME']) {
      case 'localhost' : define (DB_USERNAME, 'test' );
                         define (DB_PASSWORD, 'test' );
                         break;
       case 'hilfy.dailydatainc.com' :
       case 'hilfy.chanur.dailydatainc.com'     :
       case 'hilfy      '     : define (DB_USERNAME, 'timetracker' );
                                define (DB_PASSWORD, 'timetracker' );
                                 break;
   }

   define (DB_TABLE, 'bugz');
   define (SEND_EMAIL, false);
   $CATEGORIES = array(
                       1 => array('title' => 'Bug Report',
                                    'email' => 'rodo@dailydata.net',
                                    'subject' => 'Time Tracker Bug'),
                       2 => array('title' => 'Enhancement Request',
                                    'email' => 'rodo@dailydata.net',
                                    'subject' => 'Time Tracker Enhancement Request'),
                     );
   $FIELDS = array (
                     1 => array( 'title'     => 'Your Name',
                                 'type'      => 'text',
                                 'varname'   => 'submitter',
                                 'max length'=> 30,
                                 'class'     => 'text-field',
                                 'required'  => true
                              ),
                     8 => array( 'title'     => 'Section with Bug/Enhancement',
                                 'type'      => 'text',
                                 'varname'   => 'section',
                                 'max length'=> 40,
                                 'class'     => 'text-field'
                              ),
                     9 => array( 'title'     => 'Details',
                                 'type'      => 'textarea',
                                 'varname'   => 'details',
                                 'columns'   => 40,
                                 'rows'      => 10,
                                 'class'     => 'text-area'
                              )
                  );

   $MAX_DISPLAY_WIDTH = 40;

?>

Generated by GNU Enscript 1.6.5.90.