ShopCategory: 9 frontend methods in CategoryRepository, front\Views\ShopCategory (3 methods), deleted factory + view, updated 6 callers, +17 tests. ShopClient: 13 frontend methods in ClientRepository, front\Views\ShopClient (8 methods), front\Controllers\ShopClientController (15 methods + buildEmailBody helper), deleted factory + view + controls, updated 7 callers, +36 tests. Security fix: removed hardcoded password bypass 'Legia1916'. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
554 B
PHP
15 lines
554 B
PHP
<? global $lang;?>
|
|
<div class="client-panel client-orders-history box">
|
|
<?= \front\Views\ShopClient::clientMenu( [
|
|
'active_page' => 'orders'
|
|
] );?>
|
|
<div class="box-title">
|
|
<?= ucfirst( \Shared\Helpers\Helpers::lang( 'historia-zamowien' ) );?>
|
|
</div>
|
|
<? if ( is_array( $this -> orders ) ): foreach ( $this -> orders as $order ):?>
|
|
<?= \Shared\Tpl\Tpl::view( 'shop-order/order-simple', [
|
|
'order' => $order,
|
|
'statuses' => \shop\Order::order_statuses()
|
|
] );?>
|
|
<? endforeach; endif;?>
|
|
</div>
|