mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-25 00:56:49 +00:00
15 lines
252 B
PHP
15 lines
252 B
PHP
<?php
|
|
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
|
|
#[\AllowDynamicProperties]
|
|
class SurveysController extends SugarController
|
|
{
|
|
public function action_Reports()
|
|
{
|
|
$this->view = 'Reports';
|
|
}
|
|
}
|