source: sandbox/workflow/trunk/inc/engine/src/API/activities/End.php @ 2372

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