Skip to main content

[MXAE] How to DELETE a record

Delete a record using MXAE-API


function deleteOneRecord($programCodeOrID, $recId) {
  $delete = false; 
  $program = new mxProgram;
  $program->getBy(array('id' => $programCodeOrID, 'code' => array($programCodeOrID, '=', 'OR')));
  $ac = $program->getArticle($recId);
  $delete = $ac->del();
  //echo $ac->client;
  
  return $delete;
}

Comments

Popular posts from this blog

To list program/subchannel under a channel

--php opening-- //get all program/sub-channel function getAllProgramsUnderThisChannel($channelCodeOrID) { $ids = array(); $channel = new mxChannel; $channel->getBy(array('id' => $channelCodeOrID, 'code' => array($channelCodeOrID, '=', 'OR'))); $programs = $channel->getAllPrograms(); foreach($programs as $program) { $ids[] = $program->code; } $subchannels = $channel->getAllChildChannels(); foreach($subchannels as $subchannel) { $tids = $this->getAllProgramsUnderThisChannel($subchannel->id); $pids = array_merge($ids, $tids); $ids = $pids; } return $ids; } --php closing--