mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-05 14:39:45 +00:00
14 lines
252 B
PHP
14 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';
|
|
}
|
|
}
|