/** * Function to delete AdhocCharges * * @param int $id Id of the AdhocCharges to be deleted. * * @return boolean * * @access public * @static */ static function del($id) { $dao = new CRM_Booking_DAO_AdhocCharges(); $dao->id = $id; $dao->is_deleted = 1; return $dao->save(); }
/** * returns the list of fields that can be exported * * @access public * return array * @static */ static function &export($prefix = false) { if (!self::$_export) { self::$_export = array(); $fields = self::fields(); foreach ($fields as $name => $field) { if (CRM_Utils_Array::value('export', $field)) { if ($prefix) { self::$_export['booking_adhoc_charges'] =& $fields[$name]; } else { self::$_export[$name] =& $fields[$name]; } } } } return self::$_export; }