True ); var $functions; function institutional_accounts() { if (function_exists('CreateObject')) { $this->functions = CreateObject('expressoAdmin1_2.functions'); if(!@is_object($GLOBALS['phpgw']->js)) { $GLOBALS['phpgw']->js = CreateObject('phpgwapi.javascript'); } $GLOBALS['phpgw']->js->validate_file('jscode','connector','expressoAdmin1_2');#diretorio, arquivo.js, aplicacao $GLOBALS['phpgw']->js->validate_file('jscode','finder','expressoAdmin1_2'); $GLOBALS['phpgw']->js->validate_file('jscode','institutional_accounts','expressoAdmin1_2'); $GLOBALS['phpgw']->js->validate_file('modal','modal','expressoAdmin1_2'); $GLOBALS['phpgw']->js->validate_file('jscode','expressoadmin','expressoAdmin1_2'); } } function index() { /* Begin: Check manager access */ $account_lid = $GLOBALS['phpgw']->accounts->data['account_lid']; $acl = $this->functions->read_acl($account_lid); $contexts = $acl['contexts']; foreach ($acl['contexts_display'] as $index=>$tmp_context) { $context_display .= '
'.$tmp_context; } if (!$this->functions->check_acl($account_lid,'list_institutional_accounts')) { $GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/expressoAdmin1_2/inc/access_denied.php')); } /* End: Check manager access */ unset($GLOBALS['phpgw_info']['flags']['noheader']); unset($GLOBALS['phpgw_info']['flags']['nonavbar']); $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['expressoAdmin1_2']['title'].' - '.lang('Institutional accounts'); $GLOBALS['phpgw']->common->phpgw_header(); $p = CreateObject('phpgwapi.Template',PHPGW_APP_TPL); $p->set_file( Array( 'institutional_accounts' => 'institutional_accounts.tpl', 'institutional_accounts_modal' =>'institutional_accounts_modal.tpl' ) ); $p->set_block('institutional_accounts','body'); /* dinamic load lang */ $p->set_var($this->functions->make_dinamic_lang($p, 'body')); $p->set_var($this->functions->make_dinamic_lang($p, 'institutional_accounts_modal')); /* Begin: set modal */ $functions = CreateObject('expressoAdmin1_2.functions'); //$organizations = $functions->get_organizations($GLOBALS['phpgw_info']['server']['ldap_context']); foreach ($contexts as $index=>$context) $combo_manager_org .= $this->functions->get_organizations($context); $combo_all_orgs = $this->functions->get_organizations($GLOBALS['phpgw_info']['server']['ldap_context']); $p->set_var('manager_organizations', $combo_manager_org); $p->set_var('all_organizations', $combo_all_orgs); $modal_id = 'institutional_accounts_modal'; $p->set_var('modal_id', $modal_id); $institutional_accounts_modal_tpl = $p->fp('out','institutional_accounts_modal'); /* End: set modal */ $var = Array( 'th_bg' => $GLOBALS['phpgw_info']['theme']['th_bg'], 'back_url' => $GLOBALS['phpgw']->link('/expressoAdmin1_2/index.php'), 'context_display' => $context_display, 'institutional_accounts_modal' => $institutional_accounts_modal_tpl, 'onclick_create_institutional_account' => "modal(\"$modal_id\",\"create\")" ); $p->set_var($var); $p->pfp('out','body'); } } ?>