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