/**
  * Function to delete ResourceConfigOption
  *
  * @param  int  $id     Id of the Resource Config Option to be deleted.
  *
  * @return boolean
  *
  * @access public
  * @static
  */
 static function del($id)
 {
     $configOption = new CRM_Booking_DAO_ResourceConfigOption();
     $configOption->id = $id;
     return $configOption->delete();
 }