mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 08:53:37 +01:00
allow to pass in the used Db object
This commit is contained in:
parent
a23cfd37b0
commit
a78003f866
@ -2,11 +2,11 @@
|
|||||||
/**
|
/**
|
||||||
* EGroupware API - Timed Asynchron Services
|
* EGroupware API - Timed Asynchron Services
|
||||||
*
|
*
|
||||||
* @link http://www.egroupware.org
|
* @link https://www.egroupware.org
|
||||||
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||||
* @copyright Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
* @copyright Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||||
*
|
*
|
||||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
* @license https://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||||||
* @package api
|
* @package api
|
||||||
* @access public
|
* @access public
|
||||||
*/
|
*/
|
||||||
@ -47,10 +47,16 @@ class Asyncservice
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* constructor of the class
|
* constructor of the class
|
||||||
|
*
|
||||||
|
* @param ?Db $db
|
||||||
*/
|
*/
|
||||||
function __construct()
|
function __construct(Db $db=null)
|
||||||
{
|
{
|
||||||
if (is_object($GLOBALS['egw']->db))
|
if (isset($db))
|
||||||
|
{
|
||||||
|
$this->db = $db;
|
||||||
|
}
|
||||||
|
elseif (is_object($GLOBALS['egw']->db))
|
||||||
{
|
{
|
||||||
$this->db = $GLOBALS['egw']->db;
|
$this->db = $GLOBALS['egw']->db;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user