Joomla Extensions
IOS and Android
eCommerce Templates
Hosting + Joobi Apps + eCommerce Theme
We have compiled a list of articles and common questions that we hear from our customers. Ask or enter a search term below for quick results.
Note: If you can't find what you're looking for; try this custom search.
The following lines of code need to be called in order to use Joobi functions or classes in other applications.
These lines of code will load the bear minimum Joobi library necessary to call a class or another Joobi piece of code. Anything else required will automatically loaded when necessary.
if ( ! defined('JOOBI_READY') ) { $joobiEntryPoint = '' ; $status = include( ABSPATH . 'joobi' . DIRECTORY_SEPARATOR . 'entry.php' ); if ( !$status ) { echo "We were unable to load the joobi library."; }//endif }//endif
if ( ! defined('JOOBI_READY') ) { $joobiEntryPoint = '' ; $status = include( JPATH_ROOT . DIRECTORY_SEPARATOR . 'joobi' . DIRECTORY_SEPARATOR . 'entry.php' ); if ( !$status ) { echo "We were unable to load the joobi library."; }//endif }//endif
if ( ! defined('JOOBI_READY') ) { $joobiEntryPoint = '' ; $status = include( $mosConfig_absolute_path . DIRECTORY_SEPARATOR . 'joobi' . DIRECTORY_SEPARATOR . 'entry.php' ); if ( !$status ) { echo "We were unable to load the joobi library."; }//endif }//endif