Public Member Functions | Static Public Member Functions | Public Attributes | Protected Member Functions | Protected Attributes | Private Attributes | Static Private Attributes

oxConfig Class Reference

Inheritance diagram for oxConfig:
Collaboration diagram for oxConfig:

List of all members.

Public Member Functions

 getConfigParam ($sName)
 setConfigParam ($sName, $sValue)
 init ()
 pageClose ()
 getUploadedFile ($sParamName)
 setGlobalParameter ($sName, $sValue)
 getGlobalParameter ($sName)
 getShopId ()
 setShopId ($sShopId)
 isSsl ()
 isCurrentUrl ($sURL)
 getShopUrl ($iLang=null, $blAdmin=null)
 getSslShopUrl ($iLang=null)
 getCoreUtilsUrl ()
 getCurrentShopUrl ($blAdmin=null)
 getShopCurrentUrl ($iLang=null)
 getShopHomeUrl ($iLang=null, $blAdmin=null)
 getShopSecureHomeUrl ()
 getShopCurrency ()
 getActShopCurrencyObject ()
 setActShopCurrency ($iCur)
 getOutDir ($blAbsolute=true)
 getOutUrl ($blSSL=null, $blAdmin=null, $blNativeImg=false)
 getDir ($sFile, $sDir, $blAdmin, $iLang=null, $iShop=null, $sTheme=null, $blAbsolute=true, $blIgnoreCust=false)
 getUrl ($sFile, $sDir, $blAdmin=null, $blSSL=null, $blNativeImg=false, $iLang=null, $iShop=null, $sTheme=null)
 getImagePath ($sFile, $blAdmin=false)
 getImageUrl ($blAdmin=false, $blSSL=null, $blNativeImg=null, $sFile=null)
 getImageDir ($blAdmin=false)
 getPicturePath ($sFile, $blAdmin=false, $iLang=null, $iShop=null, $sTheme=null)
 getMasterPictureDir ($blAdmin=false)
 getMasterPicturePath ($sFile, $blAdmin=false)
 getPictureUrl ($sFile, $blAdmin=false, $blSSL=null, $iLang=null, $iShopId=null, $sDefPic="master/nopic.jpg")
 getIconUrl ($sFile, $blAdmin=false, $blSSL=null, $iLang=null, $iShopId=null, $sDefPic="master/nopic.jpg")
 getPictureDir ($blAdmin)
 getTemplatePath ($sFile, $blAdmin)
 getTemplateDir ($blAdmin=false)
 getTemplateUrl ($sFile=null, $blAdmin=false, $blSSL=null, $iLang=null)
 getTemplateBase ($blAdmin=false)
 getResourcePath ($sFile= '', $blAdmin=false)
 getModulesDir ($blAbsolute=true)
 getResourceUrl ($sFile= '', $blAdmin=false, $blSSL=null, $iLang=null)
 getResourceDir ($blAdmin)
 getLanguagePath ($sFile, $blAdmin, $iLang=null, $iShop=null, $sTheme=null)
 getStdLanguagePath ($sFile, $blAdmin, $iLang=null)
 getLanguageDir ($blAdmin)
 getCurrencyArray ($iCurrency=null)
 getCurrencyObject ($sName)
 isDemoShop ()
 getEdition ()
 getFullEdition ()
 getVersion ()
 getRevision ()
 getPackageInfo ()
 isMall ()
 detectVersion ()
 saveShopConfVar ($sVarType, $sVarName, $sVarVal, $sShopId=null, $sModule= '')
 getShopConfVar ($sVarName, $sShopId=null, $sModule= '')
 decodeValue ($sType, $mOrigValue)
 getDecodeValueQuery ($sFieldName="oxvarvalue")
 isProductiveMode ()
 getBaseShopId ()
 getActiveShop ()
 getActiveView ()
 setActiveView ($oView)
 isUtf ()
 getLogsDir ()
 isThemeOption ($sName)
 getShopMainUrl ()
 getAllModules ()
 parseModuleChains ($aModules)

Static Public Member Functions

static getInstance ()
static getParameter ($sName, $blRaw=false)
static checkSpecialChars (&$sValue, $aRaw=null)

Public Attributes

const OXMODULE_THEME_PREFIX = 'theme:'
const OXMODULE_MODULE_PREFIX = 'module:'
const OXMAX_SHOP_COUNT = 256

Protected Member Functions

 _processSeoCall ()
 _loadVarsFromFile ()
 _loadCustomConfig ()
 _loadVarsFromDb ($sShopID, $aOnlyVars=null, $sModule= '')
 _setConfVarFromDb ($sVarName, $sVarType, $sVarVal)
 _handleDbConnectionException ($oEx)
 _handleCookieException ($oEx)

Protected Attributes

 $dbHost = null
 $dbName = null
 $dbUser = null
 $dbPwd = null
 $dbType = null
 $sShopURL = null
 $sSSLShopURL = null
 $sAdminSSLURL = null
 $sShopDir = null
 $sCompileDir = null
 $iDebug = 0
 $sAdminEmail = null
 $blSessionUseCookies = null
 $blNativeImages = true
 $aMultiShopTables
 $_oActShop = null
 $_oActView = null
 $_aGlobalParams = array()
 $_aConfigParams = array()
 $_aThemeConfigParams = array()
 $_iLanguageId = null
 $_iShopId = null
 $_sOutDir = 'out'
 $_sImageDir = 'img'
 $_sPictureDir = 'pictures'
 $_sMasterPictureDir = 'master'
 $_sTemplateDir = 'tpl'
 $_sResourceDir = 'src'
 $_sModulesDir = 'modules'
 $_blIsSsl = null
 $_aAbsDynImageDir = array()
 $_oActCurrencyObject = null

Private Attributes

 $_oStart = null

Static Private Attributes

static $_instance = null

Detailed Description

Main shop configuration class.

Definition at line 9 of file oxconfig.php.


Member Function Documentation

oxConfig._handleCookieException ( oEx  )  [protected]

Redirect to start page and display the error

Parameters:
oxException $oEx message to show on exit
Returns:
bool

Definition at line 2072 of file oxconfig.php.

oxConfig._handleDbConnectionException ( oEx  )  [protected]

Shows exception message if debug mode is enabled, redirects otherwise.

Parameters:
oxException $oEx message to show on exit
Returns:
bool

Definition at line 2051 of file oxconfig.php.

oxConfig._loadCustomConfig (  )  [protected]

Loads vars from custom config file

Returns:
null;

Definition at line 517 of file oxconfig.php.

oxConfig._loadVarsFromDb ( sShopID,
aOnlyVars = null,
sModule = '' 
) [protected]

Load config values from DB

Parameters:
string $sShopID shop ID to load parameters
array $aOnlyVars array of params to load (optional)
string $sModule module vars to load, empty for base options
Returns:
bool

Definition at line 534 of file oxconfig.php.

oxConfig._loadVarsFromFile (  )  [protected]

Loads vars from default config file

Returns:
null;

Definition at line 496 of file oxconfig.php.

oxConfig._processSeoCall (  )  [protected]

Parse SEO url parameters.

Returns:
null

Definition at line 347 of file oxconfig.php.

oxConfig._setConfVarFromDb ( sVarName,
sVarType,
sVarVal 
) [protected]

set config variable to config object, first unserializing it by given type

Parameters:
string $sVarName variable name
string $sVarType variable type - arr, aarr, bool or str
string $sVarVal serialized by type value
Returns:
null

Definition at line 598 of file oxconfig.php.

static oxConfig.checkSpecialChars ( &$  sValue,
aRaw = null 
) [static]

Checks if passed parameter has special chars and replaces them. Returns checked value.

Parameters:
mixed &$sValue value to process escaping
array $aRaw keys of unescaped values
Returns:
mixed

Definition at line 722 of file oxconfig.php.

oxConfig.decodeValue ( sType,
mOrigValue 
)

Decodes and returns database value

Parameters:
string $sType parameter type
mixed $mOrigValue parameter db value
Returns:
mixed

Definition at line 1864 of file oxconfig.php.

oxConfig.detectVersion (  ) 

Checks version of shop, returns: 0 - version is bellow 2.2 1 - Demo or unlicensed 2 - Pro 3 - Enterprise

Returns:
int

Definition at line 1748 of file oxconfig.php.

oxConfig.getActiveShop (  ) 

Loads and returns active shop object

Returns:
oxshop

Definition at line 1929 of file oxconfig.php.

oxConfig.getActiveView (  ) 

Returns active view object. If this object was not defined - returns oxview object

Returns:
oxview

Definition at line 1946 of file oxconfig.php.

oxConfig.getActShopCurrencyObject (  ) 

Returns active shop currency object.

Returns:
object

Definition at line 1026 of file oxconfig.php.

oxConfig.getAllModules (  ) 

Get parsed modules

Returns:
array

Definition at line 2015 of file oxconfig.php.

oxConfig.getBaseShopId (  ) 

Function returns default shop ID

Returns:
string

Definition at line 1918 of file oxconfig.php.

oxConfig.getConfigParam ( sName  ) 

Returns config parameter value if such parameter exists

Parameters:
string $sName config parameter name
Returns:
mixed

Definition at line 307 of file oxconfig.php.

oxConfig.getCoreUtilsUrl (  ) 

Returns utils dir URL

Returns:
string

Definition at line 930 of file oxconfig.php.

oxConfig.getCurrencyArray ( iCurrency = null  ) 

Returns array of available currencies

Parameters:
integer $iCurrency Active currency number (default null)
Returns:
array

Definition at line 1566 of file oxconfig.php.

oxConfig.getCurrencyObject ( sName  ) 

Returns currency object.

Parameters:
string $sName Name of active currency
Returns:
object

Definition at line 1629 of file oxconfig.php.

oxConfig.getCurrentShopUrl ( blAdmin = null  ) 

Returns SSL or non SSL shop URL without index.php depending on Mall affecting environment is admin mode and current ssl usage status

Parameters:
bool $blAdmin if admin
Returns:
string

Definition at line 943 of file oxconfig.php.

oxConfig.getDecodeValueQuery ( sFieldName = "oxvarvalue"  ) 

Returns decode query part user to decode config field value

Parameters:
string $sFieldName field name, default "oxvarvalue" [optional]
Returns:
string

Definition at line 1887 of file oxconfig.php.

oxConfig.getDir ( sFile,
sDir,
blAdmin,
iLang = null,
iShop = null,
sTheme = null,
blAbsolute = true,
blIgnoreCust = false 
)

Finds and returns files or folders path in out dir

Parameters:
string $sFile File name
string $sDir Directory name
bool $blAdmin Whether to force admin
int $iLang Language id
int $iShop Shop id
string $sTheme Theme name
bool $blAbsolute mode - absolute/relative path
bool $blIgnoreCust Ignore custom theme
Returns:
string

Definition at line 1121 of file oxconfig.php.

oxConfig.getEdition (  ) 

Returns OXID eShop edition

Returns:
string

Definition at line 1656 of file oxconfig.php.

oxConfig.getFullEdition (  ) 

Returns full eShop edition name

Returns:
string

Definition at line 1668 of file oxconfig.php.

oxConfig.getGlobalParameter ( sName  ) 

Returns global parameter value

Parameters:
string $sName name of cached parameter
Returns:
mixed

Definition at line 704 of file oxconfig.php.

oxConfig.getIconUrl ( sFile,
blAdmin = false,
blSSL = null,
iLang = null,
iShopId = null,
sDefPic = "master/nopic.jpg" 
)

Finds and returns product, category icon file

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
bool $blSSL Whether to force ssl
int $iLang Language
int $iShopId Shop id
string $sDefPic Default (nopic) image path ["icon/nopic_ico.jpg"]
Deprecated:
Returns:
string

Definition at line 1360 of file oxconfig.php.

oxConfig.getImageDir ( blAdmin = false  ) 

Finds and returns image folders path

Parameters:
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1272 of file oxconfig.php.

oxConfig.getImagePath ( sFile,
blAdmin = false 
)

Finds and returns image files or folders path

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1244 of file oxconfig.php.

oxConfig.getImageUrl ( blAdmin = false,
blSSL = null,
blNativeImg = null,
sFile = null 
)

Finds and returns image folder url

Parameters:
bool $blAdmin Whether to force admin
bool $blSSL Whether to force ssl
bool $blNativeImg Whether to force native image dirs
string $sFile Image file name
Returns:
string

Definition at line 1259 of file oxconfig.php.

static oxConfig.getInstance (  )  [static]

Returns singleton oxConfig object instance or create new if needed

Returns:
oxConfig

Definition at line 473 of file oxconfig.php.

oxConfig.getLanguageDir ( blAdmin  ) 

Finds and returns language folders path

Parameters:
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1554 of file oxconfig.php.

oxConfig.getLanguagePath ( sFile,
blAdmin,
iLang = null,
iShop = null,
sTheme = null 
)

Finds and returns language files or folders path

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
int $iLang Language id
int $iShop Shop id
string $sTheme Theme name
Deprecated:
, should not be used any more (2011.07.06)
Returns:
string

Definition at line 1521 of file oxconfig.php.

oxConfig.getLogsDir (  ) 

Returns log files storage path

Returns:
string

Definition at line 1983 of file oxconfig.php.

oxConfig.getMasterPictureDir ( blAdmin = false  ) 

Finds and returns master pictures folder path

Parameters:
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1300 of file oxconfig.php.

oxConfig.getMasterPicturePath ( sFile,
blAdmin = false 
)

Finds and returns master picture path

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1313 of file oxconfig.php.

oxConfig.getModulesDir ( blAbsolute = true  ) 

Returns path to modules dir

Parameters:
bool $blAbsolute mode - absolute/relative path
Returns:
string

Definition at line 1471 of file oxconfig.php.

oxConfig.getOutDir ( blAbsolute = true  ) 

Returns path to out dir

Parameters:
bool $blAbsolute mode - absolute/relative path
Returns:
string

Definition at line 1068 of file oxconfig.php.

oxConfig.getOutUrl ( blSSL = null,
blAdmin = null,
blNativeImg = false 
)

Returns url to out dir

Parameters:
bool $blSSL Whether to force ssl
bool $blAdmin Whether to force admin
bool $blNativeImg Whether to force native image dirs
Returns:
string

Definition at line 1086 of file oxconfig.php.

oxConfig.getPackageInfo (  ) 

Returns build package info file content.

Returns:
bool|string

Definition at line 1714 of file oxconfig.php.

static oxConfig.getParameter ( sName,
blRaw = false 
) [static]

Returns value of parameter stored in POST,GET. For security reasons performed oxconfig.checkSpecialChars(). use $blRaw very carefully if you want to get unescaped parameter.

Parameters:
string $sName Name of parameter
bool $blRaw Get unescaped parameter
Returns:
mixed

Definition at line 635 of file oxconfig.php.

oxConfig.getPictureDir ( blAdmin  ) 

Finds and returns product pictures folders path

Parameters:
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1372 of file oxconfig.php.

oxConfig.getPicturePath ( sFile,
blAdmin = false,
iLang = null,
iShop = null,
sTheme = null 
)

Finds and returns product pictures files or folders path

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
int $iLang Language
int $iShop Shop id
string $sTheme theme name
Returns:
string

Definition at line 1288 of file oxconfig.php.

oxConfig.getPictureUrl ( sFile,
blAdmin = false,
blSSL = null,
iLang = null,
iShopId = null,
sDefPic = "master/nopic.jpg" 
)

Finds and returns product picture file or folder url

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
bool $blSSL Whether to force ssl
int $iLang Language
int $iShopId Shop id
string $sDefPic Default (nopic) image path ["0/nopic.jpg"]
Returns:
string

Definition at line 1330 of file oxconfig.php.

oxConfig.getResourceDir ( blAdmin  ) 

Finds and returns resouce (css, js, etc..) folders path

Parameters:
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1503 of file oxconfig.php.

oxConfig.getResourcePath ( sFile = '',
blAdmin = false 
)

Finds and returns resouce (css, js, etc..) files or folders path

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1459 of file oxconfig.php.

oxConfig.getResourceUrl ( sFile = '',
blAdmin = false,
blSSL = null,
iLang = null 
)

Finds and returns resouce (css, js, etc..) file or folder url

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
bool $blSSL Whether to force ssl
int $iLang Language id
Returns:
string

Definition at line 1490 of file oxconfig.php.

oxConfig.getRevision (  ) 

Returns build revision number or false on read error.

Returns:
int

Definition at line 1697 of file oxconfig.php.

oxConfig.getShopConfVar ( sVarName,
sShopId = null,
sModule = '' 
)

Retrieves shop configuration parameters from DB.

Parameters:
string $sVarName Variable name
string $sShopId Shop ID
string $sModule module identifier
Returns:
object - raw configuration value in DB

Definition at line 1831 of file oxconfig.php.

oxConfig.getShopCurrency (  ) 

Returns active shop currency.

Returns:
string

Definition at line 1010 of file oxconfig.php.

oxConfig.getShopCurrentUrl ( iLang = null  ) 

Returns SSL or not SSL shop URL with index.php and sid

Parameters:
int $iLang language (optional)
Returns:
string

Definition at line 971 of file oxconfig.php.

oxConfig.getShopHomeUrl ( iLang = null,
blAdmin = null 
)

Returns shop non SSL URL including index.php and sid.

Parameters:
int $iLang language
bool $blAdmin if admin
Returns:
string

Definition at line 990 of file oxconfig.php.

oxConfig.getShopId (  ) 

Returns active shop ID.

Returns:
int

Definition at line 755 of file oxconfig.php.

oxConfig.getShopMainUrl (  ) 

Returns SSL or non SSL shop main URL without index.php

Returns:
string

Definition at line 2005 of file oxconfig.php.

oxConfig.getShopSecureHomeUrl (  ) 

Returns shop SSL URL with index.php and sid.

Returns:
string

Definition at line 1000 of file oxconfig.php.

oxConfig.getShopUrl ( iLang = null,
blAdmin = null 
)

Returns config sShopURL or sMallShopURL if secondary shop

Parameters:
int $iLang language
bool $blAdmin if admin
Returns:
string

Definition at line 864 of file oxconfig.php.

oxConfig.getSslShopUrl ( iLang = null  ) 

Returns config sSSLShopURL or sMallSSLShopURL if secondary shop

Parameters:
int $iLang language (default is null)
Returns:
string

Definition at line 896 of file oxconfig.php.

oxConfig.getStdLanguagePath ( sFile,
blAdmin,
iLang = null 
)

Returns standard (current theme) language files or folders path

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
int $iLang Language id
Deprecated:
, should not be used any more (2011.07.06)
Returns:
string

Definition at line 1537 of file oxconfig.php.

oxConfig.getTemplateBase ( blAdmin = false  ) 

Finds and returns base template folder url

Parameters:
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1445 of file oxconfig.php.

oxConfig.getTemplateDir ( blAdmin = false  ) 

Finds and returns templates folders path

Parameters:
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1418 of file oxconfig.php.

oxConfig.getTemplatePath ( sFile,
blAdmin 
)

Finds and returns templates files or folders path

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
Returns:
string

Definition at line 1385 of file oxconfig.php.

oxConfig.getTemplateUrl ( sFile = null,
blAdmin = false,
blSSL = null,
iLang = null 
)

Finds and returns template file or folder url

Parameters:
string $sFile File name
bool $blAdmin Whether to force admin
bool $blSSL Whether to force ssl
int $iLang Language id
Returns:
string

Definition at line 1433 of file oxconfig.php.

oxConfig.getUploadedFile ( sParamName  ) 

Returns uploaded file parameter

Parameters:
array $sParamName param name
Returns:
null

Definition at line 679 of file oxconfig.php.

oxConfig.getUrl ( sFile,
sDir,
blAdmin = null,
blSSL = null,
blNativeImg = false,
iLang = null,
iShop = null,
sTheme = null 
)

Finds and returns file or folder url in out dir

Parameters:
string $sFile File name
string $sDir Directory name
bool $blAdmin Whether to force admin
bool $blSSL Whether to force ssl
bool $blNativeImg Whether to force native image dirs
int $iLang Language id
int $iShop Shop id
string $sTheme Theme name
Returns:
string

Definition at line 1226 of file oxconfig.php.

oxConfig.getVersion (  ) 

Returns shops version number (eg. '4.4.2')

Returns:
string

Definition at line 1686 of file oxconfig.php.

oxConfig.init (  ) 

Starts session manager

Exceptions:
oxConnectionException 
Returns:
null

Definition at line 362 of file oxconfig.php.

oxConfig.isCurrentUrl ( sURL  ) 

Compares current URL to supplied string

Parameters:
string $sURL URL
Returns:
bool true if $sURL is equal to current page URL

Definition at line 823 of file oxconfig.php.

oxConfig.isDemoShop (  ) 

Checks if the shop is in demo mode.

Returns:
bool

Definition at line 1644 of file oxconfig.php.

oxConfig.isMall (  ) 

Checks if shop is MALL. Returns true on success.

Returns:
bool

Definition at line 1733 of file oxconfig.php.

oxConfig.isProductiveMode (  ) 

Returns true if current active shop is in productive mode or false if not

Returns:
bool

Definition at line 1897 of file oxconfig.php.

oxConfig.isSsl (  ) 

Checks if WEB session is SSL. Returns true if yes.

Returns:
bool

Definition at line 787 of file oxconfig.php.

oxConfig.isThemeOption ( sName  ) 

Returns true if option is theme option

Parameters:
string $sName option name
Returns:
bool

Definition at line 1995 of file oxconfig.php.

oxConfig.isUtf (  ) 

Returns true if current installation works in UTF8 mode, or false if not

Returns:
bool

Definition at line 1973 of file oxconfig.php.

oxConfig.pageClose (  ) 

Unsets all session data.

Returns:
null

Definition at line 619 of file oxconfig.php.

oxConfig.parseModuleChains ( aModules  ) 

Parse array of module chains to nested array

Parameters:
array $aModules Module array (config format)
Returns:
array

Definition at line 2027 of file oxconfig.php.

oxConfig.saveShopConfVar ( sVarType,
sVarName,
sVarVal,
sShopId = null,
sModule = '' 
)

Updates or adds new shop configuration parameters to DB. Arrays must be passed not serialized, serialized values are supported just for backward compatibility.

Parameters:
string $sVarType Variable Type
string $sVarName Variable name
mixed $sVarVal Variable value (can be string, integer or array)
string $sShopId Shop ID, default is current shop
string $sModule Module name (empty for base options)
Returns:
null

Definition at line 1766 of file oxconfig.php.

oxConfig.setActiveView ( oView  ) 

View object setter

Parameters:
object $oView view object
Returns:
null

Definition at line 1963 of file oxconfig.php.

oxConfig.setActShopCurrency ( iCur  ) 

Sets the actual currency

Parameters:
int $iCur 0 = EUR, 1 = GBP, 2 = CHF
Returns:
null

Definition at line 1052 of file oxconfig.php.

oxConfig.setConfigParam ( sName,
sValue 
)

Stores config parameter value in cofig

Parameters:
string $sName config parameter name
string $sValue config parameter value
Returns:
null

Definition at line 333 of file oxconfig.php.

oxConfig.setGlobalParameter ( sName,
sValue 
)

Sets global parameter value

Parameters:
string $sName name of parameter
mixed $sValue value to store
Returns:
null

Definition at line 692 of file oxconfig.php.

oxConfig.setShopId ( sShopId  ) 

Active Shop id setter

Parameters:
string $sShopId shop id
Returns:
null

Definition at line 775 of file oxconfig.php.


Member Data Documentation

oxConfig.$_aAbsDynImageDir = array() [protected]

Definition at line 270 of file oxconfig.php.

oxConfig.$_aConfigParams = array() [protected]

Definition at line 185 of file oxconfig.php.

oxConfig.$_aGlobalParams = array() [protected]

Definition at line 178 of file oxconfig.php.

oxConfig.$_aThemeConfigParams = array() [protected]

Definition at line 192 of file oxconfig.php.

oxConfig.$_blIsSsl = null [protected]

Definition at line 263 of file oxconfig.php.

oxConfig.$_iLanguageId = null [protected]

Definition at line 199 of file oxconfig.php.

oxConfig.$_instance = null [static, private]

Definition at line 147 of file oxconfig.php.

oxConfig.$_iShopId = null [protected]

Definition at line 206 of file oxconfig.php.

oxConfig.$_oActCurrencyObject = null [protected]

Definition at line 277 of file oxconfig.php.

oxConfig.$_oActShop = null [protected]

Definition at line 162 of file oxconfig.php.

oxConfig.$_oActView = null [protected]

Definition at line 171 of file oxconfig.php.

oxConfig.$_oStart = null [private]

Definition at line 154 of file oxconfig.php.

oxConfig.$_sImageDir = 'img' [protected]

Definition at line 221 of file oxconfig.php.

oxConfig.$_sMasterPictureDir = 'master' [protected]

Definition at line 235 of file oxconfig.php.

oxConfig.$_sModulesDir = 'modules' [protected]

Definition at line 256 of file oxconfig.php.

oxConfig.$_sOutDir = 'out' [protected]

Definition at line 214 of file oxconfig.php.

oxConfig.$_sPictureDir = 'pictures' [protected]

Definition at line 228 of file oxconfig.php.

oxConfig.$_sResourceDir = 'src' [protected]

Definition at line 249 of file oxconfig.php.

oxConfig.$_sTemplateDir = 'tpl' [protected]

Definition at line 242 of file oxconfig.php.

oxConfig.$aMultiShopTables [protected]
Initial value:
 array( 'oxarticles', 'oxdiscount', 'oxcategories', 'oxattribute',
                                         'oxlinks', 'oxvoucherseries', 'oxmanufacturers',
                                         'oxnews', 'oxselectlist', 'oxwrapping',
                                         'oxdeliveryset', 'oxdelivery', 'oxvendor', 'oxobject2category')

Definition at line 137 of file oxconfig.php.

oxConfig.$blNativeImages = true [protected]

Definition at line 130 of file oxconfig.php.

oxConfig.$blSessionUseCookies = null [protected]

Definition at line 112 of file oxconfig.php.

oxConfig.$dbHost = null [protected]

Definition at line 19 of file oxconfig.php.

oxConfig.$dbName = null [protected]

Definition at line 26 of file oxconfig.php.

oxConfig.$dbPwd = null [protected]

Definition at line 40 of file oxconfig.php.

oxConfig.$dbType = null [protected]

Definition at line 47 of file oxconfig.php.

oxConfig.$dbUser = null [protected]

Definition at line 33 of file oxconfig.php.

oxConfig.$iDebug = 0 [protected]

Definition at line 98 of file oxconfig.php.

oxConfig.$sAdminEmail = null [protected]

Definition at line 105 of file oxconfig.php.

oxConfig.$sAdminSSLURL = null [protected]

Definition at line 68 of file oxconfig.php.

oxConfig.$sCompileDir = null [protected]

Definition at line 82 of file oxconfig.php.

oxConfig.$sShopDir = null [protected]

Definition at line 75 of file oxconfig.php.

oxConfig.$sShopURL = null [protected]

Definition at line 54 of file oxconfig.php.

oxConfig.$sSSLShopURL = null [protected]

Definition at line 61 of file oxconfig.php.

Definition at line 298 of file oxconfig.php.

Definition at line 291 of file oxconfig.php.

Definition at line 284 of file oxconfig.php.


The documentation for this class was generated from the following file: