| [ 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.mysqli.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 jimport( 'joomla.database.database' ); 13 jimport( 'joomla.database.database.mysqli' ); 14 /** 15 * @package Joomla 16 * @deprecated As of version 1.5 17 */ 18 class database extends JDatabase { 19 function __construct ($host='localhost', $user, $pass, $db='', $table_prefix='', $offline = true) { 20 parent::__construct( 'mysqli', $host, $user, $pass, $db, $table_prefix ); 21 } 22 } 23 ?>
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 |