Files
kupshop/bundles/KupShop/ShoppingListBundle/View/ShoppingListCreateView.php
2025-08-02 16:30:27 +02:00

23 lines
416 B
PHP

<?php
namespace KupShop\ShoppingListBundle\View;
use KupShop\KupShopBundle\Views\View;
class ShoppingListCreateView extends View
{
protected $template = 'shoppingList/create-list.tpl';
public function getTitle()
{
return translate('title_create', 'shopping_list');
}
public function getBodyVariables()
{
$vars = parent::getBodyVariables();
return $vars;
}
}