source: trunk/contactcenter/index.php @ 284

Revision 284, 1.6 KB checked in by rafaelraymundo, 16 years ago (diff)

Vide Trac - #197, #166, #198, #199

  1. Correção de problema na leitura do arquivo configuração.
  2. Permissão do click2dial também no contactcenter.
  3. Visualização de matricula, e nro celular no resultado da pesquisa(se estiverem populados)
  4. Adicionada a leitura a Catálogos Externos
  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2  /***************************************************************************\
3  * eGroupWare - Contacts Center                                              *
4  * http://www.egroupware.org                                                 *
5  * Written by:                                                               *
6  *  - Raphael Derosso Pereira <raphaelpereira@users.sourceforge.net>         *
7  *  - Jonas Goes <jqhcb@users.sourceforge.net>                               *
8  *  sponsored by Thyamad - http://www.thyamad.com                            *
9  * ------------------------------------------------------------------------- *
10  *  This program is free software; you can redistribute it and/or modify it  *
11  *  under the terms of the GNU General Public License as published by the    *
12  *  Free Software Foundation; either version 2 of the License, or (at your   *
13  *  option) any later version.                                               *
14  \***************************************************************************/
15
16        $GLOBALS['phpgw_info'] = array();
17
18        $GLOBALS['phpgw_info']['flags'] = array(
19                'currentapp' => 'contactcenter',
20                'noheader'   => true,
21                //'nonavbar'   => true
22        );
23        include('../header.inc.php');
24        $_SESSION['phpgw_info']['user']['preferences']['contactcenter']['telephone_number'] = $GLOBALS['phpgw_info']['user']['telephonenumber'];
25        $_SESSION['phpgw_info']['user']['preferences']['contactcenter']['voip_enabled'] = true;
26
27        $obj = CreateObject('contactcenter.ui_data');
28        $obj->index();
29       
30
31        $GLOBALS['phpgw']->common->phpgw_footer();
32?>
Note: See TracBrowser for help on using the repository browser.