0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-10 18:48:02 +00:00
salesagility_SuiteCRM/modules/Accounts/views/view.list.php
2023-07-18 15:53:09 +01:00

20 lines
428 B
PHP
Executable File

<?php
require_once('modules/Accounts/AccountsListViewSmarty.php');
#[\AllowDynamicProperties]
class AccountsViewList extends ViewList
{
/**
* @see ViewList::preDisplay()
*/
public function preDisplay()
{
require_once('modules/AOS_PDF_Templates/formLetter.php');
formLetter::LVPopupHtml('Accounts');
parent::preDisplay();
$this->lv = new AccountsListViewSmarty();
}
}