[ Index ]
 

Code source de vtiger CRM 5.0.2

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/modules/Users/ -> AuditTrailList.php (source)

   1  <?php
   2  /*********************************************************************************
   3    ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
   4     * ("License"); You may not use this file except in compliance with the License
   5     * The Original Code is:  vtiger CRM Open Source
   6     * The Initial Developer of the Original Code is vtiger.
   7     * Portions created by vtiger are Copyright (C) vtiger.
   8     * All Rights Reserved.
   9    *
  10   ********************************************************************************/
  11  
  12  require_once ('include/utils/utils.php');
  13  require_once ('user_privileges/audit_trail.php');
  14  require_once ('Smarty_setup.php');
  15  global $app_strings;
  16  global $mod_strings;
  17  global $currentModule;
  18  global $theme;
  19  $theme_path="themes/".$theme."/";
  20  $image_path=$theme_path."images/";
  21  global $current_language;
  22  
  23  $smarty = new vtigerCRM_Smarty;
  24  
  25  $smarty->assign("MOD", return_module_language($current_language,'Settings'));
  26  $smarty->assign("CMOD", $mod_strings);
  27  $smarty->assign("APP", $app_strings);
  28  $smarty->assign("IMAGE_PATH",$image_path);
  29  $smarty->assign("USERLIST",getUserslist());
  30  
  31  if($audit_trail == 'true')
  32      $server = 'enabled';
  33  else
  34      $server = 'disabled';
  35  
  36  $smarty->assign("AuditStatus", $server);
  37  
  38  $smarty->display('AuditTrailList.tpl');
  39  
  40  
  41  ?>


Généré le : Sun Feb 25 10:22:19 2007 par Balluche grâce à PHPXref 0.7