Skip to content

Instantly share code, notes, and snippets.

@CB9TOIIIA
Created August 2, 2017 15:17
Show Gist options
  • Save CB9TOIIIA/a814f5a77ca342e21e7f33a8d655007d to your computer and use it in GitHub Desktop.
Save CB9TOIIIA/a814f5a77ca342e21e7f33a8d655007d to your computer and use it in GitHub Desktop.
Объект в БД UPDATE
$orderModel = JBModelOrder::model();
$orderz = $orderModel->getById($idcz);
$object = new stdClass();
$object->id = $idcz;
$object->status = 'coupon_end';
$result = JFactory::getDbo()->updateObject(ZOO_TABLE_JBZOO_ORDER, $object, 'id');
echo "<div class='container'><h2>Статус купона изменен!</h2> </div>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment