Skip to content

Instantly share code, notes, and snippets.

@alexsoin
Created March 13, 2018 07:47
Show Gist options
  • Select an option

  • Save alexsoin/670b2eecdc0ba4ab415b87d4f89a5fc7 to your computer and use it in GitHub Desktop.

Select an option

Save alexsoin/670b2eecdc0ba4ab415b87d4f89a5fc7 to your computer and use it in GitHub Desktop.
Удаление заказа minishop2 modx из бд
<?php
$id_order = 9999; // id заказа который нужно удалить
$order = $modx->getObject('msOrder', $id_order);
$order->remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment