You've already forked joomla_test
first commit
This commit is contained in:
24
libraries/legacy/database/exception.php
Normal file
24
libraries/legacy/database/exception.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Legacy
|
||||
* @subpackage Database
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE
|
||||
*/
|
||||
|
||||
defined('JPATH_PLATFORM') or die;
|
||||
|
||||
JLog::add('JDatabaseException is deprecated, use SPL Exceptions instead.', JLog::WARNING, 'deprecated');
|
||||
|
||||
/**
|
||||
* Exception class definition for the Database subpackage.
|
||||
*
|
||||
* @package Joomla.Legacy
|
||||
* @subpackage Database
|
||||
* @since 11.1
|
||||
* @deprecated 12.3 (Platform) & 4.0 (CMS) - Use semantic exceptions instead
|
||||
*/
|
||||
class JDatabaseException extends RuntimeException
|
||||
{
|
||||
}
|
1
libraries/legacy/database/index.html
Normal file
1
libraries/legacy/database/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
25
libraries/legacy/database/mysql.php
Normal file
25
libraries/legacy/database/mysql.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Legacy
|
||||
* @subpackage Database
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE
|
||||
*/
|
||||
|
||||
defined('JPATH_PLATFORM') or die;
|
||||
|
||||
JLog::add('JDatabaseMysql is deprecated, use JDatabaseDriverMysql instead.', JLog::WARNING, 'deprecated');
|
||||
|
||||
/**
|
||||
* MySQL database driver
|
||||
*
|
||||
* @package Joomla.Legacy
|
||||
* @subpackage Database
|
||||
* @see http://dev.mysql.com/doc/
|
||||
* @since 11.1
|
||||
* @deprecated 13.1 (Platform) & 4.0 (CMS) - Use JDatabaseDriverMysql instead.
|
||||
*/
|
||||
class JDatabaseMysql extends JDatabaseDriverMysql
|
||||
{
|
||||
}
|
25
libraries/legacy/database/mysqli.php
Normal file
25
libraries/legacy/database/mysqli.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Legacy
|
||||
* @subpackage Database
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE
|
||||
*/
|
||||
|
||||
defined('JPATH_PLATFORM') or die;
|
||||
|
||||
JLog::add('JDatabaseMysqli is deprecated, use JDatabaseDriverMysqli instead.', JLog::WARNING, 'deprecated');
|
||||
|
||||
/**
|
||||
* MySQLi database driver
|
||||
*
|
||||
* @package Joomla.Legacy
|
||||
* @subpackage Database
|
||||
* @see http://php.net/manual/en/book.mysqli.php
|
||||
* @since 11.1
|
||||
* @deprecated 13.1 (Platform) & 4.0 (CMS) - Use JDatabaseDriverMysqli instead.
|
||||
*/
|
||||
class JDatabaseMysqli extends JDatabaseDriverMysqli
|
||||
{
|
||||
}
|
25
libraries/legacy/database/sqlazure.php
Normal file
25
libraries/legacy/database/sqlazure.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Legacy
|
||||
* @subpackage Database
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE
|
||||
*/
|
||||
|
||||
defined('JPATH_PLATFORM') or die;
|
||||
|
||||
JLog::add('JDatabaseSqlazure is deprecated, use JDatabaseDriverSqlazure instead.', JLog::WARNING, 'deprecated');
|
||||
|
||||
/**
|
||||
* SQL Server database driver
|
||||
*
|
||||
* @package Joomla.Legacy
|
||||
* @subpackage Database
|
||||
* @see http://msdn.microsoft.com/en-us/library/ee336279.aspx
|
||||
* @since 11.1
|
||||
* @deprecated 13.1 (Platform) & 4.0 (CMS) - Use JDatabaseDriverSqlazure instead.
|
||||
*/
|
||||
class JDatabaseSqlazure extends JDatabaseDriverSqlazure
|
||||
{
|
||||
}
|
25
libraries/legacy/database/sqlsrv.php
Normal file
25
libraries/legacy/database/sqlsrv.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Legacy
|
||||
* @subpackage Database
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE
|
||||
*/
|
||||
|
||||
defined('JPATH_PLATFORM') or die;
|
||||
|
||||
JLog::add('JDatabaseSqlsrv is deprecated, use JDatabaseDriverSqlsrv instead.', JLog::WARNING, 'deprecated');
|
||||
|
||||
/**
|
||||
* SQL Server database driver
|
||||
*
|
||||
* @package Joomla.Legacy
|
||||
* @subpackage Database
|
||||
* @see http://msdn.microsoft.com/en-us/library/cc296152(SQL.90).aspx
|
||||
* @since 11.1
|
||||
* @deprecated 13.1 (Platform) & 4.0 (CMS) - Use JDatabaseDriverSqlsrv instead.
|
||||
*/
|
||||
class JDatabaseSqlsrv extends JDatabaseDriverSqlsrv
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user