amazOOP amazOOP
[ class tree: amazOOP ] [ index: amazOOP ] [ all elements ]

Source for file userdata.inc.php

Documentation is available at userdata.inc.php

  1. <?php
  2. defined( '_AMAZOOP' ) or die( 'Direct Access to this location is not allowed.' );
  3. /**
  4. * This file contains all, at least in theory, of properties that can be configured
  5. * in amazOOP.
  6. *
  7. * It is divided in two parts:
  8. * - one you <i>must</i> modify to get amazOOP to work on your server, and
  9. * - one you should only touch <b>if you know</b> what you are doing!
  10. *
  11. * @author Mauricio Diaz <madd0@users.sourceforge.net>
  12. * @copyright 2004 (c) Mauricio Diaz Orlich
  13. * @license http://www.gnu.org/licenses/gpl.html GNU Public License
  14. * @version 0.3
  15. *
  16. * @package amazOOP
  17. * @subpackage Configuration
  18. */
  19.  
  20. $_AMAZOOP_CONFIG = array( 'address' => array('test' => 'test.madd0.com',
  21. 'def' => 'www.madd0.com'),
  22. 'path_to_script' => array('test' => 'c:\\My Websites\\madd0mall\\include\\amazoop\\',
  23. 'def' => '/var/www/html/include/amazoop/'),
  24. 'close_tag_character' => array('test' => 'xhtml',
  25. 'def' => 'xhtml'),
  26. 'file_separator' => array('test' => 'windows',
  27. 'def' => 'unix'),
  28. 'UTF-8_encode' => array('test' => 'true',
  29. 'def' => 'true'),
  30. 'open_links_in' => array('test' => 'same',
  31. 'def' => 'new'),
  32. 'log_errors' => array('test' => 'true',
  33. 'def' => 'true'),
  34. 'log_requests' => array('test' => 'true',
  35. 'def' => 'true'),
  36. 'temporary_directory' => array('test' => 'tmp',
  37. 'def' => 'tmp'),
  38. 'cache_directory' => array('test' => 'cache',
  39. 'def' => 'cache'),
  40. 'max_request_log_size' => array('test' => '2000',
  41. 'def' => '2000'),
  42. 'max_error_log_size' => array('test' => '2000',
  43. 'def' => '2000'),
  44. 'request_log_file' => array('test' => 'requests.log',
  45. 'def' => 'requests.log'),
  46. 'error_log_file' => array('test' => 'error.log',
  47. 'def' => 'error.log'),
  48. 'timestamp_file' => array('test' => 'time.stamp',
  49. 'def' => 'time.stamp'),
  50. 'XML_template' => array('test' => 'feed.xml',
  51. 'def' => 'feed.xml'),
  52. 'check_alternative_images' => array('test' => '3',
  53. 'def' => '4'),
  54. );
  55.  
  56. $_AMAZOOP_ASSOC_IDS = array( 'us' => 'madd0inc',
  57. 'uk' => 'madd0mall',
  58. 'fr' => 'themadd0mall-21',
  59. 'de' => 'dermadd0mall',
  60. 'jp' => 'themadd0mall-22',
  61. 'ca' => 'themadd0mall-20'
  62. );
  63.  
  64. $_AMAZOOP_DEFAULT_IMAGES = array( 'small' => array( 'url' => '/images/mall/NASmall.gif',
  65. 'width' => '60',
  66. 'height' => '60'),
  67. 'medium' => array( 'url' => '/images/mall/NAMedium.gif',
  68. 'width' => '130',
  69. 'height' => '130'),
  70. 'large' => array( 'url' => '/images/mall/NALarge.gif',
  71. 'width' => '295',
  72. 'height' => '500')
  73. );
  74.  
  75. $_AMAZOOP_MEDIA_IMAGES = array( 'DVD' => array( 'url' => '/images/platforms/dvd.gif',
  76. 'width' => '35',
  77. 'height' => '19'),
  78. 'VHS' => array( 'url' => '/images/platforms/vhs.gif',
  79. 'width' => '35',
  80. 'height' => '18'),
  81. 'dreamcast' => array( 'url' => '/images/platforms/dreamcast.gif',
  82. 'width' => '133',
  83. 'height' => '23'),
  84. 'gamecube' => array( 'url' => '/images/platforms/gcube.gif',
  85. 'width' => '20',
  86. 'height' => '23'),
  87. 'linux' => array( 'url' => '/images/platforms/linux.gif',
  88. 'width' => '20',
  89. 'height' => '20'),
  90. 'PS2' => array( 'url' => '/images/platforms/ps2.gif',
  91. 'width' => '20',
  92. 'height' => '20'),
  93. 'windows' => array( 'url' => '/images/platforms/windows.gif',
  94. 'width' => '20',
  95. 'height' => '20'),
  96. 'xbox' => array( 'url' => '/images/platforms/xbox.gif',
  97. 'width' => '20',
  98. 'height' => '20'),
  99. 'mac_OS' => array( 'url' => '/images/platforms/mac.gif',
  100. 'width' => '20',
  101. 'height' => '20')
  102. );
  103.  
  104. $_AMAZOOP_BUYNOW_BUTTONS = array( 'us' => array( 'url' => '/images/mall/buttons/buyNowUS.gif',
  105. 'width' => '165',
  106. 'height' => '19'),
  107. 'uk' => array( 'url' => '/images/mall/buttons/buyNowUK.gif',
  108. 'width' => '165',
  109. 'height' => '19'),
  110. 'de' => array( 'url' => '/images/mall/buttons/buyNowDE.gif',
  111. 'width' => '165',
  112. 'height' => '19'),
  113. 'jp' => array( 'url' => '/images/mall/buttons/buyNowJP.gif',
  114. 'width' => '165',
  115. 'height' => '19')
  116. );?>
 
Documentation generated on Sat, 21 Aug 2004 17:40:46 +0200 by phpDocumentor 1.3.0RC3
hosted by
SourceForge.net Logo