- ShopProduct factory: full migration (~40 ProductRepository methods, ~30 controller actions) - Dashboard: Domain+DI migration (DashboardRepository + DashboardController) - Update: Domain+DI migration (UpdateRepository + UpdateController, template rewrite) - Renamed admin\Site to admin\App, removed dead fallback routing - Removed all legacy folders: admin/controls, admin/factory, admin/view - Newsletter: switched from admin\factory\Articles to ArticleRepository - 414 tests, 1335 assertions passing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
237 B
PHP
7 lines
237 B
PHP
<?= \Tpl::view('components/form-edit', ['form' => $this->form]); ?>
|
|
<?= \Tpl::view('shop-product/product-edit-custom-script', [
|
|
'product' => $this->product,
|
|
'user' => $this->user,
|
|
'languages' => $this->form->languages ?? []
|
|
]); ?>
|