source: branches/1.2/workflow/inc/engine/src/API/activities/SwitchActivity.php @ 1349

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