mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-10 16:32:27 +00:00
19 lines
413 B
PHP
Executable file
19 lines
413 B
PHP
Executable file
<?php
|
|
|
|
require_once('modules/Leads/LeadsListViewSmarty.php');
|
|
|
|
#[\AllowDynamicProperties]
|
|
class LeadsViewList extends ViewList
|
|
{
|
|
/**
|
|
* @see ViewList::preDisplay()
|
|
*/
|
|
public function preDisplay()
|
|
{
|
|
require_once('modules/AOS_PDF_Templates/formLetter.php');
|
|
formLetter::LVPopupHtml('Leads');
|
|
parent::preDisplay();
|
|
|
|
$this->lv = new LeadsListViewSmarty();
|
|
}
|
|
}
|