SuiteCRM-Core/public/legacy/modules/Surveys/controller.php
2021-03-31 15:37:32 +01:00

13 lines
225 B
PHP

<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
class SurveysController extends SugarController
{
public function action_Reports()
{
$this->view = 'Reports';
}
}