toutpratique/override/controllers/front/CategoryController.php
Thibault GUILLAUME 5ad1aa6df0 inte page category
2015-08-27 17:42:29 +02:00

14 lines
323 B
PHP

<?php
class CategoryController extends CategoryControllerCore
{
public function initContent()
{
parent::initContent();
$subcategories = Category::getChildren($this->category->id, Context::getContext()->language->id, true);
$this->context->smarty->assign(array(
'subcategories' => $subcategories,
));
}
}