for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*************************************************************************************/
/* This file is part of the RewriteUrl module for Thelia. */
/* */
/* Copyright (c) OpenStudio */
/* email : [email protected] */
/* web : http://www.thelia.net */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
namespace RewriteUrl\Controller\Admin;
use Thelia\Controller\Admin\AdminController;
/**
* Class NotRewrittenUrlsAdminController
* @package RewriteUrl\Controller\Admin
* @author Tom Pradat <[email protected]>
*/
class NotRewritenUrlsAdminController extends AdminController
{
public function defaultAction()
return $this->render(
'list-notrewritenurls',
array(
'current_tab' => $this->getRequest()->get('current_tab', 'categories'),
'page_category' => $this->getRequest()->get('page_category', 1),
'page_product' => $this->getRequest()->get('page_product', 1),
'page_brand' => $this->getRequest()->get('page_brand', 1),
'page_folder' => $this->getRequest()->get('page_folder', 1),
'page_content' => $this->getRequest()->get('page_content', 1),
)
);
}