for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Modules\Adherent\Controller;
use Alxarafe\Base\Controller;
class AdherentTypeController extends Controller
{
public function index(bool $executeActions = true): bool
switch ($this->action) {
case 'logina':
$this->template = 'theme/adminlte/auth/login';
break;
case 'loginm':
$this->template = 'theme/md/auth/login';
case 'logine':
$this->template = 'theme/eldy/auth/login';
case 'lista':
$this->template = 'theme/adminlte/page/adherent/type_list';
case 'listm':
$this->template = 'theme/md/page/adherent/type_list';
case 'liste':
$this->template = 'theme/eldy/page/adherent/type_list';
case 'edita':
$this->template = 'theme/adminlte/page/adherent/type_edit';
case 'editm':
$this->template = 'theme/md/page/adherent/type_edit';
case 'edite':
// default:
// $this->template = 'page/adherent/type_edit';
}
return parent::index();