for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://flipboxfactory.com/software/flux/license
* @link https://www.flipboxfactory.com/software/flux/
*/
namespace flipbox\flux\cp\controllers\view;
use yii\web\Response;
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
class FluxController extends AbstractController
{
* The template base path
const TEMPLATE_BASE = parent::TEMPLATE_BASE . '/flux';
/**organization
* The index view template path
const TEMPLATE_INDEX = self::TEMPLATE_BASE . '/index';
* @return Response
* @throws \craft\errors\SiteNotFoundException
public function actionIndex()
$variables = [];
$this->baseVariables($variables);
return $this->renderTemplate(
static::TEMPLATE_INDEX,
$variables
);
}