0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-22 07:52:36 +00:00
salesagility_SuiteCRM/modules/AOD_IndexEvent/metadata/listviewdefs.php

38 lines
1020 B
PHP

<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
$module_name = 'AOD_IndexEvent';
$listViewDefs [$module_name] =
array(
'RECORD_MODULE' =>
array(
'type' => 'varchar',
'label' => 'LBL_RECORD_MODULE',
'width' => '10%',
'default' => true,
),
'NAME' =>
array(
'width' => '30%',
'label' => 'LBL_NAME',
'default' => true,
'link' => true,
'customCode' => '<a href="index.php?action=EditView&module={$RECORD_MODULE}&record={$RECORD_ID}">{$NAME}</a>',
),
'DATE_MODIFIED' =>
array(
'type' => 'datetime',
'label' => 'LBL_DATE_MODIFIED',
'width' => '10%',
'default' => true,
),
'ERROR' =>
array(
'type' => 'varchar',
'label' => 'LBL_ERROR',
'width' => '50%',
'default' => true,
),
);