X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FBAO%2FDiscount.php;h=325dabb7f104d90dbfc94f383d13eb1f45d1943a;hb=553ffa22464ff37a28a070458bcd52097b54235f;hp=abe7e253531eb4067ea9565a4cbf6d3ebd019211;hpb=1219e6af26646ad548b2d7e97a7f345af4655c21;p=civicrm-core.git diff --git a/CRM/Core/BAO/Discount.php b/CRM/Core/BAO/Discount.php index abe7e25353..325dabb7f1 100644 --- a/CRM/Core/BAO/Discount.php +++ b/CRM/Core/BAO/Discount.php @@ -23,7 +23,7 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** * @@ -47,13 +47,12 @@ class CRM_Core_BAO_Discount extends CRM_Core_DAO_Discount { * @param int $entityId * @param string $entityTable * - * @return boolean - * @static + * @return bool */ - public static function del($entityId,$entityTable) { + public static function del($entityId, $entityTable) { // delete all discount records with the selected discounted id - $discount = new CRM_Core_DAO_Discount( ); - $discount->entity_id = $entityId; + $discount = new CRM_Core_DAO_Discount(); + $discount->entity_id = $entityId; $discount->entity_table = $entityTable; if ($discount->delete()) { return TRUE; @@ -67,13 +66,14 @@ class CRM_Core_BAO_Discount extends CRM_Core_DAO_Discount { * discount object. the params array contains additional unused name/value * pairs * - * @param array $params (reference) an assoc array of name/value pairs + * @param array $params + * (reference) an assoc array of name/value pairs. * - * @return object CRM_Core_DAO_Discount object on success, otherwise null - * @static + * @return object + * CRM_Core_DAO_Discount object on success, otherwise null */ public static function add(&$params) { - $discount = new CRM_Core_DAO_Discount( ); + $discount = new CRM_Core_DAO_Discount(); $discount->copyValues($params); $discount->save(); return $discount; @@ -83,16 +83,18 @@ class CRM_Core_BAO_Discount extends CRM_Core_DAO_Discount { * Determine whether the given table/id * has discount associated with it * - * @param integer $entityId entity id to be searched - * @param string $entityTable entity table to be searched - * - * @return array $optionGroupIDs option group Ids associated with discount + * @param int $entityId + * Entity id to be searched. + * @param string $entityTable + * Entity table to be searched. * + * @return array + * option group Ids associated with discount */ public static function getOptionGroup($entityId, $entityTable) { - $optionGroupIDs = array(); - $dao = new CRM_Core_DAO_Discount( ); - $dao->entity_id = $entityId; + $optionGroupIDs = array(); + $dao = new CRM_Core_DAO_Discount(); + $dao->entity_id = $entityId; $dao->entity_table = $entityTable; $dao->find(); while ($dao->fetch()) { @@ -104,10 +106,13 @@ class CRM_Core_BAO_Discount extends CRM_Core_DAO_Discount { /** * Determine in which discount set the registration date falls * - * @param int $entityID entity id to be searched - * @param string $entityTable entity table to be searched + * @param int $entityID + * Entity id to be searched. + * @param string $entityTable + * Entity table to be searched. * - * @return integer $dao->id discount id of the set which matches + * @return int + * $dao->id discount id of the set which matches * the date criteria */ public static function findSet($entityID, $entityTable) { @@ -117,8 +122,8 @@ class CRM_Core_BAO_Discount extends CRM_Core_DAO_Discount { return NULL; } - $dao = new CRM_Core_DAO_Discount( ); - $dao->entity_id = $entityID; + $dao = new CRM_Core_DAO_Discount(); + $dao->entity_id = $entityID; $dao->entity_table = $entityTable; $dao->find();