source: branches/1.2/workflow/inc/hook_settings.inc.php @ 1349

Revision 1349, 2.5 KB 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
2        /**************************************************************************\
3        * eGroupWare - Preferences                                                 *
4        * http://www.egroupware.org                                                *
5        * --------------------------------------------                             *
6        *  This program is free software; you can redistribute it and/or modify it *
7        *  under the terms of the GNU General Public License as published by the   *
8        *  Free Software Foundation; either version 2 of the License, or (at your  *
9        *  option) any later version.                                              *
10        \**************************************************************************/
11        /**
12         * @package Workflow
13         * @license http://www.gnu.org/copyleft/gpl.html GPL
14         */
15       
16        // ui_userinterface preferences
17        create_select_box('Starting page','startpage',array(
18               'Tarefas Pendentes',
19               'Processos',
20               'Acompanhamento',
21               'Aplicações Externas',
22                           'Organograma'),
23               'This is the first screen shown when you click on the workflow application icon');
24        create_select_box('Inbox Sorting', 'inbox_sort', array(
25                   'wf_act_started__ASC' => 'Data - Crescente',
26                   'wf_act_started__DESC' => 'Data - Decrescente',
27                   'wf_procname__ASC' => 'Processo - Crescente',
28                           'wf_procname__DESC' => 'Processo - Decrescente',
29                           'wf_priority__ASC' => 'Prioridade - Crescente',
30                           'wf_priority__DESC' => 'Prioridade - Decrescente',
31                   'wf_name__ASC' => 'Atividade - Crescente',
32                   'wf_name__DESC' => 'Atividade - Decrescente',
33                   'insname__ASC' => 'Identificador - Crescente',
34                   'insname__DESC' => 'Identificador - Decrescente'),
35                           'Sets the default sorting criteria for the inbox instances.');
36        create_select_box('Number of items per page', 'ui_items_per_page', array(
37                                '5' => '5',
38                                '10' => '10',
39                                '15' => '15',
40                                '20' => '20',
41                                '25' => '25',
42                                '30' => '30',
43                                '40' => '40',
44                                '50' => '50',
45                                '100' => '100',
46                                '150' => '150',
47                                '200' => '200'),
48                                'Determines the number of items per page in the user interface.');
49        create_select_box('Show activity complete page', 'show_activity_complete_page', array(
50                                '1' => 'Sim',
51                                '0' => 'Não'),
52                                'Determines if the activity complete page should be displayed after the completion of the activity');
53        create_select_box('Use light interface', 'use_light_interface', array(
54                                '1' => 'Sim',
55                                '0' => 'Não'),
56                                'Determines if a lighter version of the interface should be used');
57?>
Note: See TracBrowser for help on using the repository browser.