0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-02-10 16:32:27 +00:00
salesagility_SuiteCRM/modules/Cases/views/view.list.php
Dillon-Brown 4ee7a709a0 Remove PHP4 constructors
Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com>
2021-03-26 21:50:24 +00:00

19 lines
277 B
PHP

<?php
require_once('modules/Cases/CasesListViewSmarty.php');
class CasesViewList extends ViewList
{
public function __construct()
{
parent::__construct();
}
public function preDisplay()
{
$this->lv = new CasesListViewSmarty();
}
}