source: branches/2.2/workflow/inc/engine/src/ProcessManager/BaseManager.php @ 3167

Revision 3167, 522 bytes checked in by viani, 14 years ago (diff)

Ticket #1135 - Merged r1990:3166 from /trunk/workflow into /branches/2.2/workflow

  • Property svn:executable set to *
Line 
1<?php
2require_once(GALAXIA_LIBRARY.SEP.'src'.SEP.'common'.SEP.'Base.php');
3
4/**
5 * This class is derived by all the API classes so they get the
6 * database connection and the database methods.
7 *
8 * @package Galaxia
9 * @license http://www.gnu.org/copyleft/gpl.html GPL
10 */
11class BaseManager extends Base {
12
13  /**
14   * Constructor
15   *
16   * @param object &$db ADOdb
17   * @return object BaseManager
18   * @access public
19   */
20  function BaseManager()
21  {
22    $this->child_name = 'BaseManager';
23    parent::Base();
24  }
25
26}
27?>
Note: See TracBrowser for help on using the repository browser.