source: companies/serpro/workflow/inc/hook_settings.inc.php @ 903

Revision 903, 2.8 KB checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

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// Retirado o organograma
18//      create_select_box('Starting page','startpage',array(
19//               'Tarefas Pendentes',
20//               'Processos',
21//               'Acompanhamento',
22//               'Aplicações Externas',
23//                         'Organograma'),
24//               'This is the first screen shown when you click on the workflow application icon');
25        create_select_box('Starting page','startpage',array(
26               'Tarefas Pendentes',
27               'Processos',
28               'Acompanhamento',
29               'Aplicações Externas'),
30               'This is the first screen shown when you click on the workflow application icon');
31        create_select_box('Inbox Sorting', 'inbox_sort', array(
32                   'wf_act_started__ASC' => 'Data - Crescente',
33                   'wf_act_started__DESC' => 'Data - Decrescente',
34                   'wf_procname__ASC' => 'Processo - Crescente',
35                   'wf_procname__DESC' => 'Processo - Decrescente',
36                   'wf_name__ASC' => 'Atividade - Crescente',
37                   'wf_name__DESC' => 'Atividade - Decrescente',
38                   'insname__ASC' => 'Identificador - Crescente',
39                   'insname__DESC' => 'Identificador - Decrescente'),
40                           'Sets the default sorting criteria for the inbox instances.');
41        create_select_box('Number of items per page', 'ui_items_per_page', array(
42                                '5' => '5',
43                                '10' => '10',
44                                '15' => '15',
45                                '20' => '20',
46                                '25' => '25',
47                                '30' => '30',
48                                '40' => '40',
49                                '50' => '50',
50                                '100' => '100',
51                                '150' => '150',
52                                '200' => '200'),
53                                'Determines the number of items per page in the user interface.');
54        create_select_box('Show activity complete page', 'show_activity_complete_page', array(
55                                '1' => 'Sim',
56                                '0' => 'Não'),
57                                'Determines if the activity complete page should be displayed after the completion of the activity');
58        create_select_box('Use light interface', 'use_light_interface', array(
59                                '1' => 'Sim',
60                                '0' => 'Não'),
61                                'Determines if a lighter version of the interface should be used');
62?>
Note: See TracBrowser for help on using the repository browser.