| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Legacy Mode compatibility 4 * @version $Id: database.php 10381 2008-06-01 03:35:53Z pasamio $ 5 * @package Joomla.Legacy 6 * @deprecated As of version 1.5 7 */ 8 9 // no direct access 10 defined( '_JEXEC' ) or die( 'Restricted access' ); 11 12 require_once( dirname(__FILE__) .'/../libraries/loader.php' ); 13 14 jimport( 'joomla.database.database' ); 15 jimport( 'joomla.database.database.mysql' ); 16 /** 17 * Legacy class, derive from JDatabase instead. 18 * 19 * @package Joomla 20 * @deprecated As of version 1.5 21 */ 22 class database extends JDatabase { 23 function __construct ($host='localhost', $user, $pass, $db='', $table_prefix='', $offline = true) { 24 parent::__construct( 'mysql', $host, $user, $pass, $db, $table_prefix ); 25 } 26 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Mar 28 15:54:07 2012 | Cross-referenced by PHPXref 0.7.1 |