home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Freeware
/
Programare
/
dotproject
/
functions
/
tasks_func.php
< prev
Wrap
PHP Script
|
2004-02-01
|
633b
|
26 lines
<?php
$percent = array(0=>'0',5=>'5',10=>'10',15=>'15',20=>'20',25=>'25',30=>'30',35=>'35',40=>'40',45=>'45',50=>'50',55=>'55',60=>'60',65=>'65',70=>'70',75=>'75',80=>'80',85=>'85',90=>'90',95=>'95',100=>'100');
$filters = array(
'my' => 'My Tasks',
'myunfinished' => 'My Unfinished Tasks',
'allunfinished' => 'All Unfinished Tasks',
'myproj' => 'My Projects',
'mycomp' => 'All Tasks for my Company',
'unassigned' => 'All Tasks (unassigned)',
'all' => 'All Tasks'
);
$status = array(
0 => 'Active',
-1 => 'Inactive'
);
$priority = array(
-1 => 'low',
0 => 'normal',
1 => 'high'
);
?>