[ Index ]
 

Code source de vtiger CRM 5.0.2

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

title

Body

[fermer]

/modules/Users/ -> DefModuleView.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/default_module_view.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  
  30  if($singlepane_view == 'true')
  31      $viewstatus = 'enabled';
  32  else
  33      $viewstatus = 'disabled';
  34  
  35  $smarty->assign("ViewStatus", $viewstatus);
  36  
  37  $smarty->display('DefModuleView.tpl');
  38  
  39  
  40  ?>
  41  


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