14 lines
323 B
PHP
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,
|
|
));
|
|
}
|
|
}
|