<?php
  function DevKey()
  {
    return "D11PEK22YBCZS3";
  }
  
  //If StaticLinks returns true then it will encode the php reference into a link such as...
  // /list/Category/books.php = list.php?Category=books
  //STILL EXPERIMENTAL
  function StaticLinks()
  {
    return false;
  }

  function SiteName()
  {
    return "EEEEE";
  }

  function SmartyClass()
  {
    return "./smarty/Smarty.class.php";
  }
  
  function SmartyCompileDir()
  {
    return "compile";
  }
  
  function SmartyIsSubDir()
  {
    //This is set to true if SmartyCompileDir is supposed to be a subdirectory off of the current
    //working directory.
    return AAAAA;
  }
  
  function DirDelimiter()
  {
    return "BBBBB";//This should be "/" for Unix or Linux, and should be "\\" for Windows.
  }
  
  function FullSmartyCompileDir()
  {   
    if (SmartyIsSubDir())
    {
      $Result = getcwd().DirDelimiter().SmartyCompileDir().DirDelimiter();
    }
    else//SmartyCompileDir contains an absolute path.
    {
      $Result = SmartyCompileDir();
    }
    return $Result;
  }

  function PageRange()
  {
    return 15;
  }
  
  function RootFile()
  {
    return "index.php";
  }
  
  function DetailFile()
  {
    if (StaticLinks())
    {
      $DetailFile = "detail";
    }
    else
    {
      $DetailFile = "detail.php";
    }
    return $DetailFile;
  }
  
  function DefaultDir() //Set to ALL to show all on the main page otherwise show the Amazon Category.
  {
    return "ALL";
    //ex.
    //return "baby";
  }
  
  function Associate()
  {
    return "CCCCC";
  }
  
  function Host()
  {
    return "DDDDD";//Make sure it ends with a slash '/'.
  }
  
  function ListFile()
  {
    $ListFile = "list.php";
    return Host().$ListFile;
  }

  function DBServer()
  {
    return "localhost";
  }
  
  function DB()
  {
    return "amazon";
  }
  
  function DBUser()
  {
    return "root";
  }
  
  function DBPwd()
  {
    return "";
  }
  
  function DBEnabled()
  {
    return false;
  }
  
  function LogTable()
  {
    return "TBLOG";
  }
  
  function LogEnabled()
  {
    return false;
  }
  
  function LogAutoPrune()//Not yet implemented.
  {
    return 100000;//0 means no limit.
  }
  
  function MenuTitle()
  {
    return "In association with Amazon.com...";
  }
?>