mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-10 18:48:02 +00:00
20 lines
428 B
PHP
Executable File
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();
|
|
}
|
|
}
|