getItemTypes(); $statusTypes = $orderService->getStatusTypes(); $this->view->setVar('item_types', $itemTypes); $this->view->setVar('status_types', $statusTypes); } /** * @Get("/list", name="admin.order.list") */ public function listAction() { $orderService = new OrderService(); $pager = $orderService->getOrders(); $this->view->setVar('pager', $pager); } /** * @Get("/{id:[0-9]+}/show", name="admin.order.show") */ public function showAction($id) { $orderService = new OrderService(); $order = $orderService->getOrder($id); $trades = $orderService->getTrades($order->id); $refunds = $orderService->getRefunds($order->id); $account = $orderService->getAccount($order->owner_id); $user = $orderService->getUser($order->owner_id); $this->view->setVar('order', $order); $this->view->setVar('trades', $trades); $this->view->setVar('refunds', $refunds); $this->view->setVar('account', $account); $this->view->setVar('user', $user); } /** * @Get("/{id:[0-9]+}/status/history", name="admin.order.status_history") */ public function statusHistoryAction($id) { $orderService = new OrderService(); $statusHistory = $orderService->getStatusHistory($id); $this->view->pick('order/status_history'); $this->view->setVar('status_history', $statusHistory); } }