Files

73 lines
1.6 KiB
PHP
Raw Permalink Normal View History

2024-04-27 09:23:34 +02:00
<?php
$subpanel_layout = array(
'top_buttons' => array(
array('widget_class' => 'SubPanelTopCreateButton'),
array('widget_class' => 'SubPanelTopSelectButton', 'popup_module' => 'ContactLeads'),
),
'where' => '',
'list_fields' => array(
'first_name'=>array(
'name'=>'first_name',
'usage' => 'query_only',
),
'last_name'=>array(
'name'=>'last_name',
'usage' => 'query_only',
),
'name'=>array(
'name'=>'name',
'vname' => 'LBL_LIST_NAME',
'widget_class' => 'SubPanelDetailViewLink',
'module' => 'ContactLeads',
'width' => '43%',
),
'title'=>array(
'name'=>'title',
'vname' => 'LBL_LIST_TITLE',
//'widget_class' => 'SubPanelDetailViewLink',
//'module' => 'ContactLeads',
'width' => '10%',
),
'primary_address_city'=>array(
'name'=>'primary_address_city',
'vname' => 'LBL_LIST_CITY',
'width' => '20%',
),
'primary_address_state'=>array(
'name'=>'primary_address_state',
'vname' => 'LBL_LIST_STATE',
'width' => '10%',
),
'email1'=>array(
'name'=>'email1',
'vname' => 'LBL_LIST_EMAIL',
'widget_class' => 'SubPanelEmailLink',
'width' => '30%',
'sortable' => false,
),
'phone_work'=>array (
'name'=>'phone_work',
'vname' => 'LBL_LIST_PHONE',
'width' => '15%',
),
'edit_button'=>array(
'vname' => 'LBL_EDIT_BUTTON',
'widget_class' => 'SubPanelEditButton',
'module' => 'ContactLeads',
'width' => '5%',
),
'remove_button'=>array(
'vname' => 'LBL_REMOVE',
'widget_class' => 'SubPanelRemoveButton',
'module' => 'ContactLeads',
'width' => '5%',
),
),
);
?>