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

Revision 1349, 607 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 * Represents workitems
5 *
6 * @package Galaxia
7 * @license http://www.gnu.org/copyleft/gpl.html GPL
8 * @todo Implement this class
9 */
10class Workitem extends Base
11{
12        /**
13         * @var object $instance
14         * @access public
15         */
16        var $instance;
17        /**
18         * @var array $properties
19         * @access public
20         */     
21        var $properties=Array();
22        /**
23         * @var int $started
24         * @access public
25         */
26        var $started;
27        /**
28         * @var int $ended
29         * @access public
30         */
31        var $ended;
32        /**
33         * @var object $activity
34         * @access public
35         */
36        var $activity; 
37}
38?>
Note: See TracBrowser for help on using the repository browser.