This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/application/classes/DB.php

36 lines
903 B
PHP
Raw Permalink Normal View History

2011-05-14 07:35:33 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class overrides Kohana's DB
*
2013-03-19 22:35:19 +00:00
* @package OSB
* @category Modifications
2011-05-14 07:35:33 +00:00
* @author Deon George
2013-03-19 22:35:19 +00:00
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
2011-05-14 07:35:33 +00:00
*/
class DB extends Kohana_DB {
// Add the site_id to the delete query
public static function delete($table = NULL)
{
$db = new Database_Query_Builder_Delete($table);
if (! in_array($table,ORM::$no_site_id_tables))
return $db->where($table.'.site_id','=',Company::instance()->site());
2011-12-30 07:10:02 +00:00
else
return $db;
2011-05-14 07:35:33 +00:00
}
// Add the site_id to the update query
final public static function update($table = NULL)
{
$db = new Database_Query_Builder_Update($table);
if (! in_array($table,ORM::$no_site_id_tables))
return $db->where($table.'.site_id','=',Company::instance()->site());
2011-12-30 07:10:02 +00:00
else
return $db;
2011-05-14 07:35:33 +00:00
}
}
?>