Jsem si jistý, že na to přijdete, ale možná by to bylo užitečné pro někoho jiného
Chcete-li použít třídu databáze joomla (i když víte, že se to nedoporučuje :) ), musíte nejprve definovat tři konstanty, jako:
define( '_JEXEC', 1 );
define( 'DS', DIRECTORY_SEPARATOR );
define( 'JPATH_BASE', $_SERVER[ 'DOCUMENT_ROOT' ] );
Potom musíte zahrnout tři soubory, například:
require_once( JPATH_BASE . DS . 'includes' . DS . 'defines.php' );
require_once( JPATH_BASE . DS . 'includes' . DS . 'framework.php' );
require_once( JPATH_BASE . DS . 'libraries' . DS . 'joomla' . DS . 'factory.php' );
$mainframe =& JFactory::getApplication('site');
UPRAVIT
Můžete zahrnout pouze dva soubory jako:
define( 'JPATH_BASE', $_SERVER[ 'DOCUMENT_ROOT' ] ); // define JPATH_BASE on the external file
require_once( JPATH_BASE . DS . 'libraries' . DS . 'import.php' ); // framework
require_once( JPATH_BASE . DS . 'configuration.php' ); // config file
Nakonec použijte třídu joomla, například:
$db = JFactory::getDBO();