source: sandbox/workflow/trunk/inc/engine/src/ProcessManager/BaseManager.php @ 2372

Revision 2372, 522 bytes checked in by pedroerp, 14 years ago (diff)

Ticket #609 - Merged 2197:2356 /sandbox/workflow/branches/609/ em /sandbox/workflow/trunk.

  • 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.