local/modules/AdminOrderCreation/Hook/Back/OrderEditHook.php line 15

  1. <?php
  2. /*************************************************************************************/
  3. /*      This file is part of the module AdminOrderCreation                           */
  4. /*                                                                                   */
  5. /*      For the full copyright and license information, please view the LICENSE.txt  */
  6. /*      file that was distributed with this source code.                             */
  7. /*************************************************************************************/
  8. namespace AdminOrderCreation\Hook\Back;
  9. use Thelia\Core\Event\Hook\HookRenderEvent;
  10. class OrderEditHook extends OrderHook
  11. {
  12.     public function onOrderAddButtonJs(HookRenderEvent $event)
  13.     {
  14.         $event->add($this->render(
  15.             'admin-order-creation/hook/orders.edit.js.html',
  16.             $event->getArguments()
  17.         ));
  18.     }
  19. }