mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-09-04 10:14:13 +08:00
[Legacy] Add label to history search defs
This commit is contained in:
parent
4dea0007c9
commit
59ae53e60f
8 changed files with 31 additions and 15 deletions
|
@ -41,7 +41,6 @@ if (!defined('sugarEntry') || !sugarEntry) {
|
||||||
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
$layout_defs['Accounts'] = array(
|
$layout_defs['Accounts'] = array(
|
||||||
// list of what Subpanels to show in the DetailView
|
// list of what Subpanels to show in the DetailView
|
||||||
'subpanel_setup' => array(
|
'subpanel_setup' => array(
|
||||||
|
@ -134,13 +133,14 @@ $layout_defs['Accounts'] = array(
|
||||||
'name' => 'collection',
|
'name' => 'collection',
|
||||||
'label' => 'LBL_COLLECTION_TYPE',
|
'label' => 'LBL_COLLECTION_TYPE',
|
||||||
'type' => 'enum',
|
'type' => 'enum',
|
||||||
'options' => $GLOBALS['app_list_strings']['collection_temp_list'],
|
'options' => 'collection_temp_list',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
'name' =>
|
'name' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'name',
|
'name' => 'name',
|
||||||
|
'label' => 'LBL_SUBJECT',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
|
@ -155,7 +155,8 @@ $layout_defs['Accounts'] = array(
|
||||||
'date_modified' =>
|
'date_modified' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'date_modified',
|
'name' => 'date_modified',
|
||||||
'default' => true,
|
'label' => 'LBL_DATE_MODIFIED',
|
||||||
|
'type' => 'date',
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -205,7 +206,8 @@ $layout_defs['Accounts'] = array(
|
||||||
'add_subpanel_data' => 'opportunity_id',
|
'add_subpanel_data' => 'opportunity_id',
|
||||||
'title_key' => 'LBL_OPPORTUNITIES_SUBPANEL_TITLE',
|
'title_key' => 'LBL_OPPORTUNITIES_SUBPANEL_TITLE',
|
||||||
'top_buttons' => array(
|
'top_buttons' => array(
|
||||||
array('widget_class' => 'SubPanelTopButtonQuickCreate')
|
array('widget_class' => 'SubPanelTopButtonQuickCreate'),
|
||||||
|
array('widget_class' => 'SubPanelTopFilterButton'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
'leads' => array(
|
'leads' => array(
|
||||||
|
|
|
@ -95,6 +95,7 @@ $layout_defs['Campaigns'] = array(
|
||||||
'name' =>
|
'name' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'name',
|
'name' => 'name',
|
||||||
|
'label' => 'LBL_SUBJECT',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
|
@ -109,7 +110,8 @@ $layout_defs['Campaigns'] = array(
|
||||||
'date_modified' =>
|
'date_modified' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'date_modified',
|
'name' => 'date_modified',
|
||||||
'default' => true,
|
'label' => 'LBL_DATE_MODIFIED',
|
||||||
|
'type' => 'date',
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -149,13 +149,14 @@ $layout_defs['Cases'] = array(
|
||||||
'name' => 'collection',
|
'name' => 'collection',
|
||||||
'label' => 'LBL_COLLECTION_TYPE',
|
'label' => 'LBL_COLLECTION_TYPE',
|
||||||
'type' => 'enum',
|
'type' => 'enum',
|
||||||
'options' => $GLOBALS['app_list_strings']['collection_temp_list'],
|
'options' => 'collection_temp_list',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
'name' =>
|
'name' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'name',
|
'name' => 'name',
|
||||||
|
'label' => 'LBL_SUBJECT',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
|
@ -170,7 +171,8 @@ $layout_defs['Cases'] = array(
|
||||||
'date_modified' =>
|
'date_modified' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'date_modified',
|
'name' => 'date_modified',
|
||||||
'default' => true,
|
'label' => 'LBL_DATE_MODIFIED',
|
||||||
|
'type' => 'date',
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -146,13 +146,14 @@ $layout_defs['Contacts'] = array(
|
||||||
'name' => 'collection',
|
'name' => 'collection',
|
||||||
'label' => 'LBL_COLLECTION_TYPE',
|
'label' => 'LBL_COLLECTION_TYPE',
|
||||||
'type' => 'enum',
|
'type' => 'enum',
|
||||||
'options' => $GLOBALS['app_list_strings']['collection_temp_list'],
|
'options' => 'collection_temp_list',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
'name' =>
|
'name' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'name',
|
'name' => 'name',
|
||||||
|
'label' => 'LBL_SUBJECT',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
|
@ -167,7 +168,8 @@ $layout_defs['Contacts'] = array(
|
||||||
'date_modified' =>
|
'date_modified' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'date_modified',
|
'name' => 'date_modified',
|
||||||
'default' => true,
|
'label' => 'LBL_DATE_MODIFIED',
|
||||||
|
'type' => 'date',
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -163,13 +163,14 @@ $layout_defs['Leads'] = array(
|
||||||
'name' => 'collection',
|
'name' => 'collection',
|
||||||
'label' => 'LBL_COLLECTION_TYPE',
|
'label' => 'LBL_COLLECTION_TYPE',
|
||||||
'type' => 'enum',
|
'type' => 'enum',
|
||||||
'options' => $GLOBALS['app_list_strings']['collection_temp_list'],
|
'options' => 'collection_temp_list',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
'name' =>
|
'name' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'name',
|
'name' => 'name',
|
||||||
|
'label' => 'LBL_SUBJECT',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
|
@ -184,7 +185,8 @@ $layout_defs['Leads'] = array(
|
||||||
'date_modified' =>
|
'date_modified' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'date_modified',
|
'name' => 'date_modified',
|
||||||
'default' => true,
|
'label' => 'LBL_DATE_MODIFIED',
|
||||||
|
'type' => 'date',
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -162,6 +162,7 @@ $layout_defs['Project'] = array(
|
||||||
'name' =>
|
'name' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'name',
|
'name' => 'name',
|
||||||
|
'label' => 'LBL_SUBJECT',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
|
@ -176,7 +177,8 @@ $layout_defs['Project'] = array(
|
||||||
'date_modified' =>
|
'date_modified' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'date_modified',
|
'name' => 'date_modified',
|
||||||
'default' => true,
|
'label' => 'LBL_DATE_MODIFIED',
|
||||||
|
'type' => 'date',
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -137,6 +137,7 @@ $layout_defs['ProjectTask'] = array(
|
||||||
'name' =>
|
'name' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'name',
|
'name' => 'name',
|
||||||
|
'label' => 'LBL_SUBJECT',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
|
@ -151,7 +152,8 @@ $layout_defs['ProjectTask'] = array(
|
||||||
'date_modified' =>
|
'date_modified' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'date_modified',
|
'name' => 'date_modified',
|
||||||
'default' => true,
|
'label' => 'LBL_DATE_MODIFIED',
|
||||||
|
'type' => 'date',
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -135,13 +135,14 @@ $layout_defs['Prospects'] = array(
|
||||||
'name' => 'collection',
|
'name' => 'collection',
|
||||||
'label' => 'LBL_COLLECTION_TYPE',
|
'label' => 'LBL_COLLECTION_TYPE',
|
||||||
'type' => 'enum',
|
'type' => 'enum',
|
||||||
'options' => $GLOBALS['app_list_strings']['collection_temp_list'],
|
'options' => 'collection_temp_list',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
'name' =>
|
'name' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'name',
|
'name' => 'name',
|
||||||
|
'label' => 'LBL_SUBJECT',
|
||||||
'default' => true,
|
'default' => true,
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
|
@ -156,7 +157,8 @@ $layout_defs['Prospects'] = array(
|
||||||
'date_modified' =>
|
'date_modified' =>
|
||||||
array(
|
array(
|
||||||
'name' => 'date_modified',
|
'name' => 'date_modified',
|
||||||
'default' => true,
|
'label' => 'LBL_DATE_MODIFIED',
|
||||||
|
'type' => 'date',
|
||||||
'width' => '10%',
|
'width' => '10%',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue