for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Apps\Controller\Admin;
use Apps\Model\Admin\Feedback\FormSettings;
use Extend\Core\Arch\AdminController as Controller;
use Ffcms\Core\App;
/**
* Class Feedback. Control and manage feedback request and answers.
* @package Apps\Controller\Admin
*/
class Feedback extends Controller
{
const VERSION = '1.0.1';
const ITEM_PER_PAGE = 10;
public $type = 'app';
// import heavy actions
use Feedback\ActionIndex {
Apps\Controller\Admin\Feedback\ActionIndex
$query
Apps\Controller\Admin\Feedback
index as actionIndex;
}
use Feedback\ActionRead {
read as actionRead;
use Feedback\ActionUpdate {
Apps\Controller\Admin\Feedback\ActionUpdate
$id
update as actionUpdate;
use Feedback\ActionTurn {
turn as actionTurn;
use Feedback\ActionDelete {
Apps\Controller\Admin\Feedback\ActionDelete
$feedback_id
delete as actionDelete;
use Feedback\ActionSettings {
settings as actionSettings;