38 lines
1.8 KiB
PHP
38 lines
1.8 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* This file is part of the RewriteUrl module for Thelia. */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : dev@thelia.net */
|
|
/* 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 <tpradat@openstudio.fr>
|
|
*/
|
|
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),
|
|
)
|
|
);
|
|
}
|
|
} |