Beispiel #1
0
 /**
  * Removes the item so that it no longer appears in item queries.
  *
  * @param int $iid the ID of the item to remove
  * 
  * public function items_remove($iid)
  */
 public function execute()
 {
     $ret = Api_Bo_Items::deleteItem($this->getAppId(), $this->item_id);
     $response = array();
     $response['result'] = $ret ? '1' : '0';
     return $response;
 }