73 lines
2.2 KiB
PHP
Executable File
73 lines
2.2 KiB
PHP
Executable File
<?php
|
|
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
|
/*******************************************************************************
|
|
* Subpanel Layout definition for SimpleModules
|
|
*******************************************************************************/
|
|
|
|
$subpanel_layout = array(
|
|
'top_buttons' => array(
|
|
//array('widget_class' => 'SubPanelTopCreateButton'),
|
|
//array('widget_class' => 'SubPanelTopSelectButton', 'popup_module' => 'EcmDocuments'),
|
|
),
|
|
|
|
'where' => 'isdir=1',
|
|
|
|
'list_fields' => array(
|
|
// 'simplemodule_number' =>array(
|
|
// 'vname' => 'LBL_LIST_NUMBER',
|
|
// 'width' => '5%',
|
|
// ),
|
|
'no'=>array(
|
|
'vname' => 'LBL_LIST_NAME',
|
|
'widget_class' => 'SubPanelDetailViewLinkEcmDocuments',
|
|
'width' => '50%',
|
|
'module' => 'EcmDocuments',
|
|
),
|
|
'path'=>array(
|
|
'vname' => 'LBL_LIST_PATH',
|
|
'widget_class' => 'SubPanelPathEcmDocuments',
|
|
'width' => '20%',
|
|
'module' => 'EcmDocuments',
|
|
),
|
|
// 'status'=>array(
|
|
// 'vname' => 'LBL_LIST_STATUS',
|
|
// 'width' => '15%',
|
|
// ),
|
|
// 'type'=>array(
|
|
// 'vname' => 'LBL_LIST_TYPE',
|
|
// 'width' => '15%',
|
|
// ),
|
|
// 'priority'=>array(
|
|
// 'vname' => 'LBL_LIST_PRIORITY',
|
|
// 'width' => '11%',
|
|
// ),
|
|
'assigned_user_name' => array (
|
|
'name' => 'assigned_user_name',
|
|
'vname' => 'LBL_LIST_ASSIGNED_TO_NAME',
|
|
),
|
|
/*
|
|
'date_modified' => array (
|
|
'name' => 'date_modified',
|
|
'vname' => 'Date Modified',
|
|
),
|
|
'date_entered' => array (
|
|
'name' => 'date_entered',
|
|
'vname' => 'Date Created',
|
|
),
|
|
*/
|
|
/*
|
|
'edit_button'=>array(
|
|
'widget_class' => 'SubPanelEditButton',
|
|
'module' => 'EcmDocuments',
|
|
'width' => '4%',
|
|
),
|
|
'remove_button'=>array(
|
|
'widget_class' => 'SubPanelRemoveButton',
|
|
'module' => 'EcmDocuments',
|
|
'width' => '5%',
|
|
),*/
|
|
),
|
|
);
|
|
|
|
?>
|