mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
20 lines
428 B
PHP
Executable File
20 lines
428 B
PHP
Executable File
<?php
|
|
|
|
require_once('modules/Contacts/ContactsListViewSmarty.php');
|
|
|
|
#[\AllowDynamicProperties]
|
|
class ContactsViewList extends ViewList
|
|
{
|
|
/**
|
|
* @see ViewList::preDisplay()
|
|
*/
|
|
public function preDisplay()
|
|
{
|
|
require_once('modules/AOS_PDF_Templates/formLetter.php');
|
|
formLetter::LVPopupHtml('Contacts');
|
|
parent::preDisplay();
|
|
|
|
$this->lv = new ContactsListViewSmarty();
|
|
}
|
|
}
|