Advertisement
Guest User

Untitled

a guest
May 13th, 2017
580
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.58 KB | None | 0 0
  1. <?php
  2. class Config {
  3.     public static $basedir = 'C:\\Program Files (x86)\\Apache Software Foundation\\Apache2.2\\htdocs\\jewelry\\cart/';
  4.     public static $imageURLBase = '/jewelry/images/cart_images/';
  5.     public static $imagedir = 'C:\\Program Files (x86)\\Apache Software Foundation\\Apache2.2\\htdocs\\jewelry\\images\\cart_images';
  6.     public static $imageThumbSize = '150';
  7.     public static $imageFullSize = '800';
  8.     public static $imageCompression = '80';
  9.     public static $imagePrefix = 'product_';
  10.     public static $tax = '0.05';
  11.     public static $shippingAmount = '5';
  12.     public static $showSuperCat = '0';
  13.     public static $checkoutReturnPage = NULL;
  14.     public static $storeName = 'Jewelry Coins and Gems';
  15.     public static $checkoutContact = '(605) 347-9169';
  16.     public static $email = array (
  17.   'checkout' =>
  18.   array (
  19.     'fromEmail' => 'thegreatall@gmail.com',
  20.     'fromName' => 'Jewelry Coins and Gems',
  21.     'siteAdminEmail' => 'thegreatall@gmail.com',
  22.     'siteAdminName' => 'Jewelry Coins and Gems Staff',
  23.     'checkoutSubject' => 'Jewelry Coins and Gems Reciept',
  24.     'isHtml' => '1',
  25.     'fromemail' => 'thegreatall@gmail.com',
  26.     'siteAdminname' => 'Jewelry Coins and Gems Staff',
  27.   ),
  28. );
  29.     public static $database;
  30. }
  31. require_once(Config::$basedir . 'classes/functions.php');
  32.  
  33. Functions::$config = array (
  34.   'base_url_queries' =>
  35.   array (
  36.     'option' => 'com_alladacart',
  37.     'view' => 'alladacart',
  38.   ),
  39.   'https' => 'https',
  40.   'baseUrl' => 'localhost/jewelry/',
  41.   'baseTitle' => '%s - Jewelry Coins & Gems',
  42.   'baseDescription' => '%s',
  43.   'baseTags' => 'jewelry,coins,gems',
  44. );
  45. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement