source: branches/1.2/workflow/inc/engine/src/ProcessManager/BaseManager.php @ 1349

Revision 1349, 550 bytes checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

  • 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, database methods and the Observable interface
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(&$db)
21  {
22    $this->child_name = 'BaseManager';
23    parent::Base($db);
24  }
25
26}
27?>
Note: See TracBrowser for help on using the repository browser.