for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Routes.
*
* @copyright Zikula contributors (Zikula)
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @author Zikula contributors <[email protected]>.
* @link http://www.zikula.org
* @link http://zikula.org
* @version Generated by ModuleStudio 0.7.0 (http://modulestudio.de).
*/
namespace Zikula\RoutesModule\Controller;
use Zikula\RoutesModule\Controller\Base\AbstractUserController;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Request;
use Zikula\ThemeModule\Engine\Annotation\Theme;
* User controller class providing navigation and interaction functionality.
class UserController extends AbstractUserController
{
* This is the default action handling the index area called without defining arguments.
* @Route("/user",
* methods = {"GET"}
* )
* @param Request $request Current request instance
* @return mixed Output
* @throws AccessDeniedException Thrown if the user doesn't have required permissions
public function indexAction(Request $request)
return parent::indexAction($request);
}
// feel free to add your own controller methods here