mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-14 02:01:24 +00:00
18 lines
401 B
PHP
Executable file
18 lines
401 B
PHP
Executable file
<?php
|
|
|
|
require_once('modules/Accounts/AccountsListViewSmarty.php');
|
|
|
|
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();
|
|
}
|
|
}
|