[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/ -> config.performance.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  /* Performance paramters can be configured to fine tune vtiger CRM runtime */
  11  $PERFORMANCE_CONFIG = Array(
  12      // Enable log4php debugging only if requried 
  13      'LOG4PHP_DEBUG' => false,
  14  
  15      // Should the caller information be captured in SQL Logging?
  16      // It adds little overhead for performance but will be useful to debug
  17      'SQL_LOG_INCLUDE_CALLER' => false,
  18  
  19      // If database default charset is UTF-8, set this to true 
  20      // This avoids executing the SET NAMES SQL for each query!
  21      'DB_DEFAULT_CHARSET_UTF8' => true,
  22  
  23      // Compute record change indication for each record shown on listview
  24      'LISTVIEW_RECORD_CHANGE_INDICATOR' => false,
  25  
  26      // Turn-off default sorting in ListView, could eat up time as data grows
  27      'LISTVIEW_DEFAULT_SORTING' => false,
  28      
  29      // Compute list view record count while loading listview everytime.
  30      // Recommended value false
  31      'LISTVIEW_COMPUTE_PAGE_COUNT' => false,
  32  
  33      // Control DetailView Record Navigation
  34      'DETAILVIEW_RECORD_NAVIGATION' => true,
  35  
  36      // To control the Email Notifications being sent to the Owner
  37      'NOTIFY_OWNER_EMAILS' => true,        //By default it is set to true, if it is set to false, then notifications will not be sent
  38      // reduce number of ajax requests on home page, reduce this value if home page widget dont
  39      // show value.
  40      'HOME_PAGE_WIDGET_GROUP_SIZE' => 12,
  41      //take backup legacy style, whenever an admin user logs out.
  42      'LOGOUT_BACKUP' => true,
  43  );
  44  ?>


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1