15 lines
399 B
PHP
15 lines
399 B
PHP
<?php
|
|
namespace app\controllers;
|
|
class category
|
|
{
|
|
public static function power_meters($defaults)
|
|
{
|
|
echo $GLOBALS['twig']->render('lib/page/index.twig', context: array_merge($defaults, [
|
|
'child_template' => 'lib/page/category.twig',
|
|
'page_title' => 'Power Meters - ' . $_ENV['APP_NAME'],
|
|
'product_category' => 'power_meters',
|
|
]));
|
|
}
|
|
}
|
|
|