mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-08-02 04:10:23 +08:00
87 lines
1.8 KiB
PHP
Executable file
87 lines
1.8 KiB
PHP
Executable file
<?php
|
|
$searchdefs ['Documents'] =
|
|
array(
|
|
'layout' =>
|
|
array(
|
|
'basic_search' =>
|
|
array(
|
|
0 => 'document_name',
|
|
1 => array('name' => 'favorites_only','label' => 'LBL_FAVORITES_FILTER','type' => 'bool',),
|
|
),
|
|
'advanced_search' =>
|
|
array(
|
|
'document_name' =>
|
|
array(
|
|
'name' => 'document_name',
|
|
'default' => true,
|
|
'width' => '10%',
|
|
),
|
|
'status' =>
|
|
array(
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_DOC_STATUS',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
'name' => 'status',
|
|
),
|
|
'template_type' =>
|
|
array(
|
|
'type' => 'enum',
|
|
'label' => 'LBL_TEMPLATE_TYPE',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
'name' => 'template_type',
|
|
),
|
|
'category_id' =>
|
|
array(
|
|
'name' => 'category_id',
|
|
'default' => true,
|
|
'width' => '10%',
|
|
),
|
|
'subcategory_id' =>
|
|
array(
|
|
'name' => 'subcategory_id',
|
|
'default' => true,
|
|
'width' => '10%',
|
|
),
|
|
'assigned_user_id' =>
|
|
array(
|
|
'name' => 'assigned_user_id',
|
|
'type' => 'enum',
|
|
'label' => 'LBL_ASSIGNED_TO',
|
|
'function' =>
|
|
array(
|
|
'name' => 'get_user_array',
|
|
'params' =>
|
|
array(
|
|
0 => false,
|
|
),
|
|
),
|
|
'default' => true,
|
|
'width' => '10%',
|
|
),
|
|
'active_date' =>
|
|
array(
|
|
'name' => 'active_date',
|
|
'default' => true,
|
|
'width' => '10%',
|
|
),
|
|
'exp_date' =>
|
|
array(
|
|
'name' => 'exp_date',
|
|
'default' => true,
|
|
'width' => '10%',
|
|
),
|
|
),
|
|
),
|
|
'templateMeta' =>
|
|
array(
|
|
'maxColumns' => '3',
|
|
'maxColumnsBasic' => '4',
|
|
'widths' =>
|
|
array(
|
|
'label' => '10',
|
|
'field' => '30',
|
|
),
|
|
),
|
|
);
|