source: branches/2.2/workflow/inc/engine/src/API/activities/Activity.php @ 3167

Revision 3167, 447 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.'API'.SEP.'BaseActivity.php');
3/**
4 * Handles activities of type 'activity'
5 *
6 * @package Galaxia
7 * @license http://www.gnu.org/copyleft/gpl.html GPL
8 */
9class Activity extends BaseActivity
10{
11        /**
12         * Constructor
13         *
14         * @param object &$db ADOdb
15         * @return object Activity instance
16         * @access public
17         */
18        function Activity()
19        {
20                parent::Base();
21                $this->child_name = 'Activity';
22        }
23
24}
25?>
Note: See TracBrowser for help on using the repository browser.