0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-22 07:52:36 +00:00
salesagility_SuiteCRM/modules/FP_events/views/view.edit.php
2023-07-18 15:53:09 +01:00

24 lines
353 B
PHP
Executable File

<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
#[\AllowDynamicProperties]
class FP_eventsViewEdit extends ViewEdit
{
public function __construct()
{
parent::__construct();
}
public function display()
{
$this->bean->email_templates();
parent::display();
}
}