0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-02-11 00:42:27 +00:00
salesagility_SuiteCRM/modules/OutboundEmailAccounts/metadata/listviewdefs.php

26 lines
486 B
PHP

<?php
$module_name = 'OutboundEmailAccounts';
$listViewDefs [$module_name] =
array(
'NAME' =>
array(
'width' => '32%',
'label' => 'LBL_NAME',
'default' => true,
'link' => true,
),
'MAIL_SMTPUSER' =>
array(
'type' => 'varchar',
'label' => 'LBL_USERNAME',
'width' => '10%',
'default' => true,
),
'MAIL_SMTPSERVER' =>
array(
'type' => 'varchar',
'label' => 'LBL_SMTP_SERVERNAME',
'width' => '10%',
'default' => true,
),
);