Advertisement
animdenis

Update

Jun 30th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. CModule::IncludeModule('iblock');
  2. global $USER;
  3. $uID = $USER->GetID();
  4. $el = new CIBlockElement;
  5.  
  6. $res = CIblockElement::GetList(array(),array('IBLOCK_ID' => 12, 'ACTIVE' => 'Y', 'CATALOG_AVAILABLE' => 'N'), false, false, array('ID'));
  7. $arLoadProductArray = Array(
  8. );
  9. while($ob = $res->GetNext())
  10. {
  11.     print_r($el->Update($ob['ID'], $arLoadProductArray));
  12.     echo $ob['ID'];
  13.     break;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement