Go to the source code of this file.
Functions | |
oxAutoload ($sClass) | |
if(!function_exists( 'error_404_handler')) | warningHandler ($iErrorNr, $sErrorText) |
dumpVar ($mVar, $blToFile=false) | |
if(!function_exists( 'isAdmin')) if(!function_exists( 'isSearchEngineUrl')) | debug ($mVar) |
cmpart ($a, $b) | |
if(!function_exists( 'startProfile')) if(!function_exists( 'stopProfile')) | oxNew ($sClassName) |
oxNewArticle ($sArtId) | |
getDb ($blAssoc=true) | |
getStr () | |
ox_get_template ($sTplName, &$sTplSource, $oSmarty) | |
ox_get_timestamp ($sTplName, &$iTplTimestamp, $oSmarty) | |
ox_get_secure ($sTplName, $oSmarty) | |
ox_get_trusted ($sTplName, $oSmarty) |
cmpart | ( | $ | a, | |
$ | b | |||
) |
Sorting for crossselling
object | $a first compare item | |
object | $b second compre item |
Start profiling
string | $sProfileName name of profile |
Stop profiling
string | $sProfileName name of profile |
Definition at line 230 of file oxfunctions.php.
prints anything given into a file, for debugging
mixed | $mVar variable to debug |
Definition at line 214 of file oxfunctions.php.
dumpVar | ( | $ | mVar, | |
$ | blToFile = false | |||
) |
Dumps $mVar information to vardump.txt file. Used in debugging.
mixed | $mVar variable | |
bool | $blToFile marker to write log info to file (must be true to log) |
Returns false as function returning true is supposed to be defined in admin/index.php dir. In OXID you can use isAdmin() to detect if code is executed in admin. Note: It does not detect if admion is logged in just identifies the place where it is called from.
Returns search engine url status
Definition at line 157 of file oxfunctions.php.
getDb | ( | $ | blAssoc = true |
) |
Returns current DB handler
bool | $blAssoc data fetch mode |
Definition at line 318 of file oxfunctions.php.
getStr | ( | ) |
ox_get_secure | ( | $ | sTplName, | |
$ | oSmarty | |||
) |
Assumes all templates are secure, returns true.
string | $sTplName not used here | |
object | $oSmarty not used here |
Definition at line 382 of file oxfunctions.php.
ox_get_template | ( | $ | sTplName, | |
&$ | sTplSource, | |||
$ | oSmarty | |||
) |
Sets template name to passed reference, returns true.
string | $sTplName name of template | |
string | &$sTplSource Template source | |
object | $oSmarty not used here |
Definition at line 342 of file oxfunctions.php.
ox_get_timestamp | ( | $ | sTplName, | |
&$ | iTplTimestamp, | |||
$ | oSmarty | |||
) |
Sets timestamt to passed timestamp object, returns true.
string | $sTplName name of template | |
string | &$iTplTimestamp template timestamp referense | |
object | $oSmarty not used here |
Definition at line 361 of file oxfunctions.php.
ox_get_trusted | ( | $ | sTplName, | |
$ | oSmarty | |||
) |
Does nothing.
string | $sTplName not used here | |
object | $oSmarty not used here |
Returns language table index
int | $iLangId language id |
Returns language table name
string | $sTable table name | |
int | $iLangId language id |
Return the view name of the given table if a view exists, otherwise the table name itself
string | $sTable table name | |
int | $iLangId language id [optional] | |
string | $sShopId shop id, otherwise config->myshopid is used [optional] |
Returns request url, which was executed to render current page view
string | $sParams Parameters to object | |
bool | $blReturnUrl If return url |
Definition at line 396 of file oxfunctions.php.
oxAutoload | ( | $ | sClass | ) |
Includes $sClass class file
string | $sClass classname |
error_404_handler handler for 404 (page not found) error
string | $sUrl url wich was given, can be not specified in some cases |
Definition at line 10 of file oxfunctions.php.
Creates and returns new object. If creation is not available, dies and outputs error message.
string | $sClassName Name of class |
oxSystemComponentException | in case that class does not exists |
Definition at line 290 of file oxfunctions.php.
oxNewArticle | ( | $ | sArtId | ) |
Creates, loads returns oxarticle object
string | $sArtId product id |
Definition at line 306 of file oxfunctions.php.
if (!function_exists( 'error_404_handler')) warningHandler | ( | $ | iErrorNr, | |
$ | sErrorText | |||
) |
Displays 'nice' HTML formatted user error. Later this method is hooked as error handler by calling set_error_handler('warningHandler', E_USER_WARNING); T2008-07-22 Not used yet
int | $iErrorNr error number | |
string | $sErrorText error message |
Definition at line 144 of file oxfunctions.php.