mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-07 07:19:11 +00:00
13 lines
225 B
PHP
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';
|
|
}
|
|
}
|