init
This commit is contained in:
12
custom/modules/Cases/logic_hooks.php
Executable file
12
custom/modules/Cases/logic_hooks.php
Executable file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
// Do not store anything in this file that is not part of the array or the hook version. This file will
|
||||
// be automatically rebuilt in the future.
|
||||
$hook_version = 1;
|
||||
$hook_array = Array();
|
||||
// position, file, function
|
||||
$hook_array['before_save'] = Array();
|
||||
$hook_array['before_save'][] = Array(1, 'Cases push feed', 'modules/Cases/SugarFeeds/CaseFeed.php','CaseFeed', 'pushFeed');
|
||||
|
||||
|
||||
|
||||
?>
|
||||
59
custom/modules/Cases/metadata/subpanels/AccountForAccounts.php
Executable file
59
custom/modules/Cases/metadata/subpanels/AccountForAccounts.php
Executable file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
// created: 2011-10-04 15:17:16
|
||||
$subpanel_layout['list_fields'] = array (
|
||||
'case_number' =>
|
||||
array (
|
||||
'vname' => 'LBL_LIST_NUMBER',
|
||||
'width' => '6%',
|
||||
'default' => true,
|
||||
),
|
||||
'name' =>
|
||||
array (
|
||||
'vname' => 'LBL_LIST_SUBJECT',
|
||||
'widget_class' => 'SubPanelDetailViewLink',
|
||||
'width' => '50%',
|
||||
'default' => true,
|
||||
),
|
||||
'status' =>
|
||||
array (
|
||||
'vname' => 'LBL_LIST_STATUS',
|
||||
'width' => '10%',
|
||||
'default' => true,
|
||||
),
|
||||
'priority' =>
|
||||
array (
|
||||
'vname' => 'LBL_LIST_PRIORITY',
|
||||
'width' => '10%',
|
||||
'default' => true,
|
||||
),
|
||||
'date_entered' =>
|
||||
array (
|
||||
'vname' => 'LBL_LIST_DATE_CREATED',
|
||||
'width' => '15%',
|
||||
'default' => true,
|
||||
),
|
||||
'assigned_user_name' =>
|
||||
array (
|
||||
'name' => 'assigned_user_name',
|
||||
'vname' => 'LBL_LIST_ASSIGNED_TO_NAME',
|
||||
'width' => '10%',
|
||||
'default' => true,
|
||||
),
|
||||
'edit_button' =>
|
||||
array (
|
||||
'vname' => 'LBL_EDIT_BUTTON',
|
||||
'widget_class' => 'SubPanelEditButton',
|
||||
'module' => 'Cases',
|
||||
'width' => '4%',
|
||||
'default' => true,
|
||||
),
|
||||
'remove_button' =>
|
||||
array (
|
||||
'vname' => 'LBL_REMOVE',
|
||||
'widget_class' => 'SubPanelRemoveButton',
|
||||
'module' => 'Cases',
|
||||
'width' => '5%',
|
||||
'default' => true,
|
||||
),
|
||||
);
|
||||
?>
|
||||
Reference in New Issue
Block a user