Skip to content
Snippets Groups Projects
Commit 20b20c79 authored by Preexo's avatar Preexo
Browse files

added editable column size to configuration

parent cae7d933
No related branches found
No related tags found
No related merge requests found
......@@ -190,6 +190,12 @@ $application_unique_key = '_VT_APP_UNIQKEY_';
// trim descriptions, titles in listviews to this value
$listview_max_textlength = 40;
// listview_max_columns default=12
$listview_max_columns = 12;
// report_max_columns default=25
$report_max_columns = 25;
// Maximum time limit for PHP script execution (in seconds)
$php_max_execution_time = 0;
......
......@@ -100,6 +100,8 @@ $languageStrings = array(
'LBL_MAIL_SERVER_SETTINGS' => 'Outgoing Server',
'LBL_MAIL_SERVER_SMTP'=>'Mail Server Settings (SMTP)',
'LBL_MAX_ENTRIES_PER_PAGE_IN_LISTVIEW' => 'Maximum entries per page in List View',
'LBL_MAX_COLUMNS_IN_LISTVIEW' => 'Maximum column count in List View',
'LBL_MAX_COLUMNS_IN_REPORT' => 'Maximum column count in Report',
'LBL_MAX_HISTORY_VIEWED' => 'Maximum History Viewed',
'LBL_MAX' => 'Max',
'LBL_MAX_TEXT_LENGTH_IN_LISTVIEW' => 'Maximum text length in List View',
......
......@@ -148,6 +148,8 @@ class Settings_Vtiger_ConfigModule_Model extends Settings_Vtiger_Module_Model {
'default_module' => array('label' => 'LBL_DEFAULT_MODULE', 'fieldType' => 'picklist'),
'listview_max_textlength' => array('label' => 'LBL_MAX_TEXT_LENGTH_IN_LISTVIEW', 'fieldType' => 'input'),
'list_max_entries_per_page' => array('label' => 'LBL_MAX_ENTRIES_PER_PAGE_IN_LISTVIEW', 'fieldType' => 'input'),
'listview_max_columns' => array('label' => 'LBL_MAX_COLUMNS_IN_LISTVIEW', 'fieldType' => 'input'),
'report_max_columns' => array('label' => 'LBL_MAX_COLUMNS_IN_REPORT', 'fieldType' => 'input'),
'default_layout' => array('label' => 'LBL_DEFAULT_LAYOUT', 'fieldType' => 'picklist')
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment