INFRA-132 - CRM/Member - Convert single-line @param to multi-line
authorTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 19:41:09 +0000 (11:41 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 23:02:29 +0000 (15:02 -0800)
18 files changed:
CRM/Member/BAO/Membership.php
CRM/Member/BAO/MembershipBlock.php
CRM/Member/BAO/MembershipLog.php
CRM/Member/BAO/MembershipPayment.php
CRM/Member/BAO/MembershipStatus.php
CRM/Member/BAO/MembershipType.php
CRM/Member/Form.php
CRM/Member/Form/Membership.php
CRM/Member/Form/MembershipBlock.php
CRM/Member/Form/MembershipRenewal.php
CRM/Member/Form/MembershipType.php
CRM/Member/Form/MembershipView.php
CRM/Member/Form/Task.php
CRM/Member/Form/Task/PickProfile.php
CRM/Member/Import/Form/MapField.php
CRM/Member/Import/Parser/Membership.php
CRM/Member/Selector/Search.php
CRM/Member/StateMachine/Search.php

index f971de8cc8a0b08100fce951ee32a7e0880f71c8..703a108baf73b5c4805c2a2c6fc3ddc2a198bea3 100644 (file)
@@ -65,8 +65,10 @@ class CRM_Member_BAO_Membership extends CRM_Member_DAO_Membership {
    * membership object. The params array could contain additional unused name/value
    * pairs
    *
-   * @param array  $params (reference ) an assoc array of name/value pairs
-   * @param array $ids    the array that holds all the db ids
+   * @param array $params
+   *   (reference ) an assoc array of name/value pairs.
+   * @param array $ids
+   *   The array that holds all the db ids.
    *
    * @return CRM_Member_BAO_Membership object
    * @static
@@ -188,9 +190,12 @@ class CRM_Member_BAO_Membership extends CRM_Member_DAO_Membership {
    * Given the list of params in the params array, fetch the object
    * and store the values in the values array
    *
-   * @param array   $params input parameters to find object
-   * @param array   $values output values of the object
-   * @param boolean $active do you want only active memberships to
+   * @param array $params
+   *   Input parameters to find object.
+   * @param array $values
+   *   Output values of the object.
+   * @param bool $active
+   *   Do you want only active memberships to.
    *                        be returned
    *
    * @return CRM_Member_BAO_Membership|null the found object or null
@@ -225,8 +230,10 @@ class CRM_Member_BAO_Membership extends CRM_Member_DAO_Membership {
   /**
    * Takes an associative array and creates a membership object
    *
-   * @param array $params (reference ) an assoc array of name/value pairs
-   * @param array $ids the array that holds all the db ids
+   * @param array $params
+   *   (reference ) an assoc array of name/value pairs.
+   * @param array $ids
+   *   The array that holds all the db ids.
    * @param bool $skipRedirect
    * @param string $activityType
    *
@@ -432,10 +439,12 @@ class CRM_Member_BAO_Membership extends CRM_Member_DAO_Membership {
   /**
    * Check the membership extended through relationship
    *
-   * @param int $membershipId membership id
-   * @param int $contactId contact id
+   * @param int $membershipId
+   *   Membership id.
+   * @param int $contactId
+   *   Contact id.
    *
-   * @param integer $action
+   * @param int $action
    *
    * @return Array    array of contact_id of all related contacts.
    * @static
@@ -499,8 +508,10 @@ class CRM_Member_BAO_Membership extends CRM_Member_DAO_Membership {
    * full featured over a period of time. This is the inverse function of
    * create.  It also stores all the retrieved values in the default array
    *
-   * @param array $params (reference ) an assoc array of name/value pairs
-   * @param array $defaults (reference ) an assoc array to hold the name / value pairs
+   * @param array $params
+   *   (reference ) an assoc array of name/value pairs.
+   * @param array $defaults
+   *   (reference ) an assoc array to hold the name / value pairs.
    *                        in a hierarchical manner
    *
    * @return CRM_Member_BAO_Membership object
@@ -536,7 +547,8 @@ class CRM_Member_BAO_Membership extends CRM_Member_DAO_Membership {
    *
    * get membership status and membership type values
    *
-   * @param int $membershipId membership id of values to return
+   * @param int $membershipId
+   *   Membership id of values to return.
    *
    * @return array of key value pairs
    */
@@ -572,7 +584,8 @@ INNER JOIN  civicrm_membership_type type ON ( type.id = membership.membership_ty
    * Delete membership.
    * Wrapper for most delete calls. Use this unless you JUST want to delete related memberships w/o deleting the parent.
    *
-   * @param int $membershipId membership id that needs to be deleted
+   * @param int $membershipId
+   *   Membership id that needs to be deleted.
    *
    * @static
    *
@@ -587,7 +600,8 @@ INNER JOIN  civicrm_membership_type type ON ( type.id = membership.membership_ty
   /**
    * Delete membership.
    *
-   * @param int $membershipId membership id that needs to be deleted
+   * @param int $membershipId
+   *   Membership id that needs to be deleted.
    *
    * @static
    *
@@ -679,8 +693,10 @@ INNER JOIN  civicrm_membership_type type ON ( type.id = membership.membership_ty
   /**
    * Obtain active/inactive memberships from the list of memberships passed to it.
    *
-   * @param array  $memberships membership records
-   * @param string $status      active or inactive
+   * @param array $memberships
+   *   Membership records.
+   * @param string $status
+   *   Active or inactive.
    *
    * @return array $actives array of memberships based on status
    * @static
@@ -709,12 +725,17 @@ INNER JOIN  civicrm_membership_type type ON ( type.id = membership.membership_ty
   /**
    * Build Membership  Block in Contribution Pages
    *
-   * @param CRM_Core_Form $form form object
-   * @param int $pageID - unused?
-   * @param int $cid - contact checked for having a current membership for a particular membership
-   * @param boolean $formItems
-   * @param int $selectedMembershipTypeID selected membership id
-   * @param boolean $thankPage thank you page
+   * @param CRM_Core_Form $form
+   *   Form object.
+   * @param int $pageID
+   *   Unused?.
+   * @param int $cid
+   *   Contact checked for having a current membership for a particular membership.
+   * @param bool $formItems
+   * @param int $selectedMembershipTypeID
+   *   Selected membership id.
+   * @param bool $thankPage
+   *   Thank you page.
    * @param null $isTest
    *
    * @return bool Is this a separate membership payment
@@ -908,7 +929,8 @@ INNER JOIN  civicrm_membership_type type ON ( type.id = membership.membership_ty
   /**
    * Return Membership Block info in Contribution Pages
    *
-   * @param int $pageID contribution page id
+   * @param int $pageID
+   *   Contribution page id.
    *
    * @return array|null
    *
@@ -947,11 +969,15 @@ INNER JOIN  civicrm_membership_type type ON ( type.id = membership.membership_ty
    * Return a current membership of given contact
    * NB: if more than one membership meets criteria, a randomly selected one is returned.
    *
-   * @param int $contactID contact id
-   * @param int $memType membership type, null to retrieve all types
+   * @param int $contactID
+   *   Contact id.
+   * @param int $memType
+   *   Membership type, null to retrieve all types.
    * @param int $isTest
-   * @param int $membershipId if provided, then determine if it is current
-   * @param boolean $onlySameParentOrg true if only Memberships with same parent org as the $memType wanted, false otherwise
+   * @param int $membershipId
+   *   If provided, then determine if it is current.
+   * @param bool $onlySameParentOrg
+   *   True if only Memberships with same parent org as the $memType wanted, false otherwise.
    *
    * @return array|bool
    * @static
@@ -1042,8 +1068,9 @@ INNER JOIN  civicrm_membership_type type ON ( type.id = membership.membership_ty
   /**
    * Combine all the importable fields from the lower levels object
    *
-   * @param string  $contactType contact type
-   * @param boolean $status
+   * @param string $contactType
+   *   Contact type.
+   * @param bool $status
    *
    * @return array array of importable Fields
    * @static
@@ -1132,9 +1159,12 @@ INNER JOIN  civicrm_membership_type type ON ( type.id = membership.membership_ty
    * Signup" or "Membership Renewal" activity falls in the given date range.
    * Dates match the pattern "yyyy-mm-dd".
    *
-   * @param int $membershipTypeId membership type id
-   * @param int $startDate date on which to start counting
-   * @param int $endDate date on which to end counting
+   * @param int $membershipTypeId
+   *   Membership type id.
+   * @param int $startDate
+   *   Date on which to start counting.
+   * @param int $endDate
+   *   Date on which to end counting.
    * @param bool|int $isTest if true, membership is for a test site
    * @param bool|int $isOwner if true, only retrieve membership records for owners //LCD
    *
@@ -1192,8 +1222,10 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = membership.contact_id AND
    * The second condition takes care of records that have no end_date.  These
    * are assumed to be lifetime memberships.
    *
-   * @param int $membershipTypeId membership type id
-   * @param string $date the date for which to retrieve the count
+   * @param int $membershipTypeId
+   *   Membership type id.
+   * @param string $date
+   *   The date for which to retrieve the count.
    * @param bool|int $isTest if true, membership is for a test site
    * @param bool|int $isOwner if true, only retrieve membership records for owners //LCD
    *
@@ -1228,7 +1260,8 @@ AND civicrm_membership.is_test = %2";
   /**
    * Function check the status of the membership before adding membership for a contact
    *
-   * @param int $contactId contact id
+   * @param int $contactId
+   *   Contact id.
    *
    * @return int
    */
@@ -1241,9 +1274,12 @@ AND civicrm_membership.is_test = %2";
   /**
    * Process the Memberships
    *
-   * @param array $membershipParams array of membership fields
-   * @param int $contactID contact id
-   * @param CRM_Contribute_Form_Contribution_Confirm $form Confirmation form object
+   * @param array $membershipParams
+   *   Array of membership fields.
+   * @param int $contactID
+   *   Contact id.
+   * @param CRM_Contribute_Form_Contribution_Confirm $form
+   *   Confirmation form object.
    *
    * @param array $premiumParams
    * @param null $customFieldsFormatted
@@ -1259,7 +1295,8 @@ AND civicrm_membership.is_test = %2";
    * @param $isProcessSeparateMembershipTransaction
    *
    * @param int $defaultContributionTypeID
-   * @param array $membershipLineItems Line items specific to membership payment that is separate to contribution
+   * @param array $membershipLineItems
+   *   Line items specific to membership payment that is separate to contribution.
    * @throws CRM_Core_Exception
    *
    * @return void
@@ -1454,15 +1491,22 @@ AND civicrm_membership.is_test = %2";
    * whether the given contact has a membership or not. And will add
    * the modified dates for membership and in the log table.
    *
-   * @param int $contactID id of the contact
-   * @param int $membershipTypeID id of the new membership type
-   * @param boolean $is_test if this is test contribution or live contribution
-   * @param CRM_Core_Form $form form object
+   * @param int $contactID
+   *   Id of the contact.
+   * @param int $membershipTypeID
+   *   Id of the new membership type.
+   * @param bool $is_test
+   *   If this is test contribution or live contribution.
+   * @param CRM_Core_Form $form
+   *   Form object.
    * @param null $changeToday
-   * @param int $modifiedID individual contact id in case of On Behalf signup (CRM-4027 )
+   * @param int $modifiedID
+   *   Individual contact id in case of On Behalf signup (CRM-4027 ).
    * @param null $customFieldsFormatted
-   * @param int $numRenewTerms how many membership terms are being added to end date (default is 1)
-   * @param integer $membershipID Membership ID, this should always be passed in & optionality should be removed
+   * @param int $numRenewTerms
+   *   How many membership terms are being added to end date (default is 1).
+   * @param int $membershipID
+   *   Membership ID, this should always be passed in & optionality should be removed.
    *
    * @throws CRM_Core_Exception
    *
@@ -1515,10 +1559,12 @@ AND civicrm_membership.is_test = %2";
    * then status will be updated based on existing start and end
    * dates and log will be added for the status change.
    *
-   * @param  array  $currentMembership   reference to the array
+   * @param array $currentMembership
+   *   Reference to the array.
    *                                     containing all values of
    *                                     the current membership
-   * @param  array  $changeToday         array of month, day, year
+   * @param array $changeToday
+   *   Array of month, day, year.
    *                                     values in case today needs
    *                                     to be customised, null otherwise
    *
@@ -1625,8 +1671,10 @@ SELECT c.contribution_page_id as pageID
   /**
    * Updated related memberships
    *
-   * @param int   $ownerMembershipId owner Membership Id
-   * @param array $params            formatted array of key => value..
+   * @param int $ownerMembershipId
+   *   Owner Membership Id.
+   * @param array $params
+   *   Formatted array of key => value.
    * @static
    */
   public static function updateRelatedMemberships($ownerMembershipId, $params) {
@@ -1673,7 +1721,8 @@ SELECT c.contribution_page_id as pageID
   /**
    * Get the sort name of a contact for a particular membership
    *
-   * @param  int    $id      id of the membership
+   * @param int $id
+   *   Id of the membership.
    *
    * @return null|string     sort name of the contact if found
    * @static
@@ -1694,8 +1743,10 @@ WHERE  civicrm_membership.contact_id = civicrm_contact.id
    * Create memberships for related contacts
    * takes into account the maximum related memberships
    *
-   * @param array $params array of key - value pairs
-   * @param CRM_Core_DAO $dao membership object
+   * @param array $params
+   *   Array of key - value pairs.
+   * @param CRM_Core_DAO $dao
+   *   Membership object.
    *
    * @return null|array     array of memberships if created
    * @static
@@ -1860,7 +1911,8 @@ WHERE  civicrm_membership.contact_id = civicrm_contact.id
   /**
    * Delete the record that are associated with this Membership Payment
    *
-   * @param  int  $membershipId  membsership id.
+   * @param int $membershipId
+   *   Membsership id.
    *
    * @return boolean  true if deleted false otherwise
    */
@@ -1936,7 +1988,7 @@ FROM   civicrm_membership_type
    * Get membership record count for a Contact
    *
    * @param int $contactID
-   * @param boolean $activeOnly
+   * @param bool $activeOnly
    *
    * @return null|string
    * @static
@@ -1959,7 +2011,8 @@ FROM   civicrm_membership_type
    * Check whether payment processor supports
    * cancellation of membership subscription
    *
-   * @param int $mid membership id
+   * @param int $mid
+   *   Membership id.
    *
    * @param bool $isNotCancelled
    *
@@ -1991,7 +2044,8 @@ FROM   civicrm_membership_type
   /**
    * Check whether subscription is already cancelled
    *
-   * @param int $mid membership id
+   * @param int $mid
+   *   Membership id.
    *
    * @return string $status contribution status
    * @static
@@ -2017,9 +2071,12 @@ LEFT JOIN civicrm_membership mem ON ( cr.id = mem.contribution_recur_id )
    * join_date and start_date are within a specified date range.  Dates match
    * the pattern "yyyy-mm-dd".
    *
-   * @param int $membershipTypeId membership type id
-   * @param int $startDate date on which to start counting
-   * @param int $endDate date on which to end counting
+   * @param int $membershipTypeId
+   *   Membership type id.
+   * @param int $startDate
+   *   Date on which to start counting.
+   * @param int $endDate
+   *   Date on which to end counting.
    * @param bool|int $isTest if true, membership is for a test site
    *
    * @return returns the number of members of type $membershipTypeId
@@ -2065,9 +2122,12 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = membership.contact_id AND
    * whose join_date is before and start_date is within a specified date
    * range.  Dates match the pattern "yyyy-mm-dd".
    *
-   * @param int $membershipTypeId membership type id
-   * @param int $startDate date on which to start counting
-   * @param int $endDate date on which to end counting
+   * @param int $membershipTypeId
+   *   Membership type id.
+   * @param int $startDate
+   *   Date on which to start counting.
+   * @param int $endDate
+   *   Date on which to end counting.
    * @param bool|int $isTest if true, membership is for a test site
    *
    * @return integer returns the number of members of type $membershipTypeId
@@ -2304,24 +2364,24 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = membership.contact_id AND
   }
 
   /**
-   * @param integer $contactID
+   * @param int $contactID
    * @param int $membershipTypeID
    * @param bool $is_test
    * @param $changeToday
-   * @param integer $modifiedID
+   * @param int $modifiedID
    * @param $customFieldsFormatted
    * @param $numRenewTerms
    * @param int $membershipID
    * @param $pending
    * @param $allStatus
    * @param array $membershipTypeDetails
-   * @param integer $contributionRecurID
+   * @param int $contributionRecurID
    * @param $format
    * @param $membershipSource
    * @param $ids
    * @param $statusFormat
    * @param $isPayLater
-   * @param integer $campaignId
+   * @param int $campaignId
    *
    * @throws CRM_Core_Exception
    * @return array
@@ -2587,7 +2647,8 @@ INNER JOIN  civicrm_contact contact ON ( contact.id = membership.contact_id AND
    * Retrieve the contribution id for the associated Membership id
    * @todo we should get this off the line item
    *
-   * @param  int  $membershipId  membership id.
+   * @param int $membershipId
+   *   Membership id.
    *
    * @return integer contribution id
    */
@@ -2810,8 +2871,10 @@ WHERE      civicrm_membership.is_test = 0";
   /**
    * Record contribution record associated with membership
    *
-   * @param array  $params array of submitted params
-   * @param array  $ids (param in process of being removed - try to use params)   array of ids
+   * @param array $params
+   *   Array of submitted params.
+   * @param array $ids
+   *   (param in process of being removed - try to use params) array of ids.
    *
    * @return CRM_Contribute_BAO_Contribution
    * @static
@@ -2886,7 +2949,8 @@ WHERE      civicrm_membership.is_test = 0";
    * Record line items for default membership
    *
    * @param CRM_Core_Form $qf
-   * @param array $membershipType array with membership type and organization
+   * @param array $membershipType
+   *   Array with membership type and organization.
    * @param int $priceSetId
    *
    * @static
@@ -2936,8 +3000,10 @@ WHERE      civicrm_membership.is_test = 0";
   /**
    * Get all Cancelled Membership(s) for a contact
    *
-   * @param int    $contactID   contact id
-   * @param boolean  $isTest    mode of payment
+   * @param int $contactID
+   *   Contact id.
+   * @param bool $isTest
+   *   Mode of payment.
    *
    * @return array of membership type
    * @static
index decc5fd520b4835ebf4ff380c5159a4ad93bff60..1cd7d85002378d5b961376578fbbab99291d6c96 100644 (file)
@@ -42,7 +42,8 @@ class CRM_Member_BAO_MembershipBlock extends CRM_Member_DAO_MembershipBlock {
   /**
    * Add the membership Blocks
    *
-   * @param array $params reference array contains the values submitted by the form
+   * @param array $params
+   *   Reference array contains the values submitted by the form.
    *
    * @static
    *
index 174fa3b7bfea94d4ed5f993053c4d26151602d9a..9a03c93b7656bc5e8361dfd5fddd722172ebfa61 100644 (file)
@@ -37,8 +37,10 @@ class CRM_Member_BAO_MembershipLog extends CRM_Member_DAO_MembershipLog {
   /**
    * Add the membership log record
    *
-   * @param array $params reference array contains the values submitted by the form
-   * @param array $ids    reference array contains the id
+   * @param array $params
+   *   Reference array contains the values submitted by the form.
+   * @param array $ids
+   *   Reference array contains the id.
    *
    * @static
    *
index 1a585dce8889f5abd58258301eabd96df515dfb3..10010872b7eebda570f0fa5f3dec331ccfcf4812 100644 (file)
@@ -44,7 +44,8 @@ class CRM_Member_BAO_MembershipPayment extends CRM_Member_DAO_MembershipPayment
   /**
    * Add the membership Payments
    *
-   * @param array $params reference array contains the values submitted by the form
+   * @param array $params
+   *   Reference array contains the values submitted by the form.
    *
    * @static
    *
index 4e4d30a52ad8b3cb8d5671f316c025107cb65f52..93f2f91c01c8261f0fa6e7b8e1acebb8521667e1 100644 (file)
@@ -49,8 +49,10 @@ class CRM_Member_BAO_MembershipStatus extends CRM_Member_DAO_MembershipStatus {
   /**
    * Fetch object based on array of properties
    *
-   * @param array $params   (reference ) an assoc array of name/value pairs
-   * @param array $defaults (reference ) an assoc array to hold the flattened values
+   * @param array $params
+   *   (reference ) an assoc array of name/value pairs.
+   * @param array $defaults
+   *   (reference ) an assoc array to hold the flattened values.
    *
    * @return CRM_Member_BAO_MembershipStatus object
    * @static
@@ -68,8 +70,10 @@ class CRM_Member_BAO_MembershipStatus extends CRM_Member_DAO_MembershipStatus {
   /**
    * Update the is_active flag in the db
    *
-   * @param int      $id        id of the database record
-   * @param boolean  $is_active value we want to set the is_active field
+   * @param int $id
+   *   Id of the database record.
+   * @param bool $is_active
+   *   Value we want to set the is_active field.
    *
    * @return Object             DAO object on sucess, null otherwise
    * @static
@@ -82,7 +86,8 @@ class CRM_Member_BAO_MembershipStatus extends CRM_Member_DAO_MembershipStatus {
    * Takes an associative array and creates a membership Status object
    * See http://wiki.civicrm.org/confluence/display/CRM/Database+layer
    *
-   * @param array $params (reference ) an assoc array of name/value pairs
+   * @param array $params
+   *   (reference ) an assoc array of name/value pairs.
    *
    * @throws Exception
    * @return CRM_Member_BAO_MembershipStatus object
@@ -107,8 +112,10 @@ class CRM_Member_BAO_MembershipStatus extends CRM_Member_DAO_MembershipStatus {
   /**
    * Add the membership types
    *
-   * @param array $params reference array contains the values submitted by the form
-   * @param array $ids array contains the id - this param is deprecated
+   * @param array $params
+   *   Reference array contains the values submitted by the form.
+   * @param array $ids
+   *   Array contains the id - this param is deprecated.
    *
    * @static
    *
@@ -212,13 +219,18 @@ class CRM_Member_BAO_MembershipStatus extends CRM_Member_DAO_MembershipStatus {
   /**
    * Find the membership status based on start date, end date, join date & status date.
    *
-   * @param  string $startDate start date of the member whose membership status is to be calculated.
-   * @param  string $endDate end date of the member whose membership status is to be calculated.
-   * @param  string $joinDate join date of the member whose membership status is to be calculated.
+   * @param string $startDate
+   *   Start date of the member whose membership status is to be calculated.
+   * @param string $endDate
+   *   End date of the member whose membership status is to be calculated.
+   * @param string $joinDate
+   *   Join date of the member whose membership status is to be calculated.
    * @param \date|string $statusDate status date of the member whose membership status is to be calculated.
-   * @param  boolean $excludeIsAdmin exclude the statuses those having is_admin = 1
+   * @param boolean $excludeIsAdmin
+   *   Exclude the statuses those having is_admin = 1.
    * @param int $membershipTypeID
-   * @param array $membership membership params as available to calling function - passed to the hook
+   * @param array $membership
+   *   Membership params as available to calling function - passed to the hook.
    *
    * @return array
   @static
index 530b28927df19109f106b86cd6ab4f06d4b677d8..4867781bd89f589f6d213f6ad1a15580485d6300 100644 (file)
@@ -51,8 +51,10 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType {
   /**
    * Fetch object based on array of properties
    *
-   * @param array $params   (reference ) an assoc array of name/value pairs
-   * @param array $defaults (reference ) an assoc array to hold the flattened values
+   * @param array $params
+   *   (reference ) an assoc array of name/value pairs.
+   * @param array $defaults
+   *   (reference ) an assoc array to hold the flattened values.
    *
    * @return CRM_Member_BAO_MembershipType object
    * @static
@@ -70,8 +72,10 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType {
   /**
    * Update the is_active flag in the db
    *
-   * @param int      $id        id of the database record
-   * @param boolean  $is_active value we want to set the is_active field
+   * @param int $id
+   *   Id of the database record.
+   * @param bool $is_active
+   *   Value we want to set the is_active field.
    *
    * @return Object             DAO object on sucess, null otherwise
    * @static
@@ -83,8 +87,10 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType {
   /**
    * Add the membership types
    *
-   * @param array $params reference array contains the values submitted by the form
-   * @param array $ids array contains the id (deprecated)
+   * @param array $params
+   *   Reference array contains the values submitted by the form.
+   * @param array $ids
+   *   Array contains the id (deprecated).
    *
    * @static
    *
@@ -188,7 +194,8 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType {
   /**
    * Convert membership Type's 'start day' & 'rollover day' to human readable formats.
    *
-   * @param array $membershipType an array of membershipType-details.
+   * @param array $membershipType
+   *   An array of membershipType-details.
    * @static
    */
   public static function convertDayFormat(&$membershipType) {
@@ -277,11 +284,15 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType {
   /**
    * Calculate start date and end date for new membership
    *
-   * @param int $membershipTypeId membership type id
-   * @param date $joinDate member since ( in mysql date format )
-   * @param date $startDate start date ( in mysql date format )
+   * @param int $membershipTypeId
+   *   Membership type id.
+   * @param date $joinDate
+   *   Member since ( in mysql date format ).
+   * @param date $startDate
+   *   Start date ( in mysql date format ).
    * @param null $endDate
-   * @param int $numRenewTerms how many membership terms are being added to end date (default is 1)
+   * @param int $numRenewTerms
+   *   How many membership terms are being added to end date (default is 1).
    *
    * @return array associated array with  start date, end date and join date for the membership
    * @static
@@ -456,8 +467,10 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType {
    *
    * @param int $membershipId
    * @param $changeToday
-   * @param int $membershipTypeID - if provided, overrides the membership type of the $membershipID membership
-   * @param int  $numRenewTerms    how many membership terms are being added to end date (default is 1)
+   * @param int $membershipTypeID
+   *   If provided, overrides the membership type of the $membershipID membership.
+   * @param int $numRenewTerms
+   *   How many membership terms are being added to end date (default is 1).
    *
    * CRM-7297 Membership Upsell - Added $membershipTypeID param to facilitate calculations of dates when membership type changes
    *
@@ -564,7 +577,8 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType {
    * Retrieve all Membership Types associated
    * with an Organization
    *
-   * @param int $orgID  Id of Organization
+   * @param int $orgID
+   *   Id of Organization.
    *
    * @return Array array of the details of membership types
    * @static
index 6413df314124b18c4295b75559388713c102fc4b..3b79251379fbe1ca2be501252ce2a608f6b07054 100644 (file)
@@ -193,7 +193,8 @@ class CRM_Member_Form extends CRM_Contribute_Form_AbstractEditPayment {
    * If the member & contributor are the same then the values will be the same. But if different people paid
    * then they weill differ
    *
-   * @param $formValues array values from form. The important values we are looking for are
+   * @param $formValues
+   *   Array values from form. The important values we are looking for are.
    *  - contact_id
    *  - soft_credit_contact_id
    */
index dcc8c1de35b7b93b9098a9ef31d351b09307e0bf..504c870b6f1cd0f5de7be4802854e601514c5225 100644 (file)
@@ -739,7 +739,8 @@ WHERE   id IN ( ' . implode(' , ', array_keys($membershipType)) . ' )';
   /**
    * Validation
    *
-   * @param array $params (ref.) an assoc array of name/value pairs
+   * @param array $params
+   *   (ref.) an assoc array of name/value pairs.
    *
    * @param $files
    * @param $self
@@ -1698,9 +1699,11 @@ WHERE   id IN ( ' . implode(' , ', array_keys($membershipType)) . ' )';
   /**
    * Send email receipt
    *
-   * @param CRM_Core_Form $form form object
+   * @param CRM_Core_Form $form
+   *   Form object.
    * @param array $formValues
-   * @param object $membership object
+   * @param object $membership
+   *   Object.
    *
    * @return boolean true if mail was sent successfully
    * @static
index c9cf10c2895f8c87e30d78491e5694bfdc01629c..7c21b99c2464541ee6544baeed6d6ae6fbc22e73 100644 (file)
@@ -212,7 +212,8 @@ class CRM_Member_Form_MembershipBlock extends CRM_Contribute_Form_ContributionPa
   /**
    * Validation
    *
-   * @param array $params (ref.) an assoc array of name/value pairs
+   * @param array $params
+   *   (ref.) an assoc array of name/value pairs.
    *
    * @param $files
    * @param int $contributionPageId
index 5537c55b397f999c522e4110b2556b00d42707a2..fc6721f5f4d975e1d23989e1fc173004bb20ef7b 100644 (file)
@@ -452,7 +452,8 @@ WHERE   id IN ( ' . implode(' , ', array_keys($membershipType)) . ' )';
   /**
    * Validation
    *
-   * @param array $params (ref.) an assoc array of name/value pairs
+   * @param array $params
+   *   (ref.) an assoc array of name/value pairs.
    *
    * @return mixed true or array of errors
    * @static
index 97ff8248d6a356cbb8e7764afc23b79a8b5d078b..9d7423c1a679b33578a40c15cc2fa6fed5247d7a 100644 (file)
@@ -212,7 +212,8 @@ class CRM_Member_Form_MembershipType extends CRM_Member_Form_MembershipConfig {
   /**
    * Validation
    *
-   * @param array $params (ref.) an assoc array of name/value pairs
+   * @param array $params
+   *   (ref.) an assoc array of name/value pairs.
    *
    * @return mixed true or array of errors
    * @static
index 9a77fd196263f47fb71be144d8a3b2d7b3b90de6..474d691c1fae8bfcdbb05e868a095e1789a30018 100644 (file)
@@ -90,8 +90,10 @@ class CRM_Member_Form_MembershipView extends CRM_Core_Form {
   /**
    * Perform create or delete action on related memberships
    *
-   * @param string $action create or delete
-   * @param array $owner primary membership info (membership_id, contact_id, membership_type ...)
+   * @param string $action
+   *   Create or delete.
+   * @param array $owner
+   *   Primary membership info (membership_id, contact_id, membership_type ...).
    *
    */
   public function relAction($action, $owner) {
index 154fba16868d7709f7e427d7579ae910c4431732..837031b8c8381d8edb4881621421b06cdb975dff 100644 (file)
@@ -165,7 +165,8 @@ class CRM_Member_Form_Task extends CRM_Core_Form {
    * Simple shell that derived classes can call to add buttons to
    * the form with a customized title for the main Submit
    *
-   * @param string $title title of the main button
+   * @param string $title
+   *   Title of the main button.
    * @param string $nextType
    * @param string $backType
    * @param bool $submitOnce
index a42dac4ca4123664e1acdef0dff9d710c7d7334c..9c95dd95333781615b7eabd786378d049521cf9e 100644 (file)
@@ -118,7 +118,8 @@ class CRM_Member_Form_Task_PickProfile extends CRM_Member_Form_Task {
   /**
    * Global validation rules for the form
    *
-   * @param array $fields posted values of the form
+   * @param array $fields
+   *   Posted values of the form.
    *
    * @return array list of errors to be posted back to the form
    * @static
index 6c6c788d21760c7637da812cec4c2c153aef68a5..4345b09973affa2eb76277b429c6d677e22061f1 100644 (file)
@@ -298,7 +298,8 @@ class CRM_Member_Import_Form_MapField extends CRM_Import_Form_MapField {
   /**
    * Global validation rules for the form
    *
-   * @param array $fields posted values of the form
+   * @param array $fields
+   *   Posted values of the form.
    *
    * @param $files
    * @param $self
index 18be57331bc9028521ddf94452c41aaadef6b682..a49e8801898deeb9a8c0f28beed11c28ec57aaa0 100644 (file)
@@ -109,7 +109,8 @@ class CRM_Member_Import_Parser_Membership extends CRM_Member_Import_Parser {
   /**
    * Handle the values in mapField mode
    *
-   * @param array $values the array of values belonging to this line
+   * @param array $values
+   *   The array of values belonging to this line.
    *
    * @return boolean
    */
@@ -120,7 +121,8 @@ class CRM_Member_Import_Parser_Membership extends CRM_Member_Import_Parser {
   /**
    * Handle the values in preview mode
    *
-   * @param array $values the array of values belonging to this line
+   * @param array $values
+   *   The array of values belonging to this line.
    *
    * @return boolean      the result of this processing
    */
@@ -131,7 +133,8 @@ class CRM_Member_Import_Parser_Membership extends CRM_Member_Import_Parser {
   /**
    * Handle the values in summary mode
    *
-   * @param array $values the array of values belonging to this line
+   * @param array $values
+   *   The array of values belonging to this line.
    *
    * @return boolean      the result of this processing
    */
@@ -244,8 +247,10 @@ class CRM_Member_Import_Parser_Membership extends CRM_Member_Import_Parser {
   /**
    * Handle the values in import mode
    *
-   * @param int $onDuplicate the code for what action to take on duplicates
-   * @param array $values the array of values belonging to this line
+   * @param int $onDuplicate
+   *   The code for what action to take on duplicates.
+   * @param array $values
+   *   The array of values belonging to this line.
    *
    * @return boolean      the result of this processing
    */
@@ -579,7 +584,8 @@ class CRM_Member_Import_Parser_Membership extends CRM_Member_Import_Parser {
   /**
    *  to calculate join, start and end dates
    *
-   * @param Array $calcDates array of dates returned by getDatesForMembershipType()
+   * @param array $calcDates
+   *   Array of dates returned by getDatesForMembershipType().
    *
    * @param $formatted
    *
@@ -611,9 +617,11 @@ class CRM_Member_Import_Parser_Membership extends CRM_Member_Import_Parser {
    * take the input parameter list as specified in the data model and
    * convert it into the same format that we use in QF and BAO object
    *
-   * @param array $params Associative array of property name/value
+   * @param array $params
+   *   Associative array of property name/value.
    *                             pairs to insert in new contact.
-   * @param array $values The reformatted properties that we can use internally
+   * @param array $values
+   *   The reformatted properties that we can use internally.
    *
    * @param array|bool $create Is the formatted Values array going to
    *                             be used for CRM_Member_BAO_Membership:create()
index f109e9ce1e3223f58b8dcf8cbb13fd56f04b7471..632f8730cc14ca22c86f67d0d99df2b544a892d5 100644 (file)
@@ -132,11 +132,15 @@ class CRM_Member_Selector_Search extends CRM_Core_Selector_Base implements CRM_C
   /**
    * Class constructor
    *
-   * @param array $queryParams array of parameters for query
+   * @param array $queryParams
+   *   Array of parameters for query.
    * @param \const|int $action - action of search basic or advanced.
-   * @param string $memberClause if the caller wants to further restrict the search (used in memberships)
-   * @param boolean $single are we dealing only with one contact?
-   * @param int $limit how many memberships do we want returned
+   * @param string $memberClause
+   *   If the caller wants to further restrict the search (used in memberships).
+   * @param bool $single
+   *   Are we dealing only with one contact?.
+   * @param int $limit
+   *   How many memberships do we want returned.
    *
    * @param string $context
    *
@@ -305,11 +309,16 @@ class CRM_Member_Selector_Search extends CRM_Core_Selector_Base implements CRM_C
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum   $action   the action being performed
-   * @param int    $offset   the row number to start from
-   * @param int    $rowCount the number of rows to return
-   * @param string $sort     the sql string that describes the sort order
-   * @param enum   $output   what should the result set include (web/email/csv)
+   * @param enum $action
+   *   The action being performed.
+   * @param int $offset
+   *   The row number to start from.
+   * @param int $rowCount
+   *   The number of rows to return.
+   * @param string $sort
+   *   The sql string that describes the sort order.
+   * @param enum $output
+   *   What should the result set include (web/email/csv).
    *
    * @return int   the total number of rows for this action
    */
@@ -452,8 +461,10 @@ class CRM_Member_Selector_Search extends CRM_Core_Selector_Base implements CRM_C
    * Returns the column headers as an array of tuples:
    * (name, sortName (key to the sort array))
    *
-   * @param string $action the action being performed
-   * @param enum   $output what should the result set include (web/email/csv)
+   * @param string $action
+   *   The action being performed.
+   * @param enum $output
+   *   What should the result set include (web/email/csv).
    *
    * @return array the column headers that need to be displayed
    */
@@ -527,7 +538,8 @@ class CRM_Member_Selector_Search extends CRM_Core_Selector_Base implements CRM_C
   /**
    * Name of export file.
    *
-   * @param string $output type of output
+   * @param string $output
+   *   Type of output.
    *
    * @return string name of the file
    */
index acd917b0c433adb9493e1e91ad16ded98c4c43c6..700a1d4173a8628611d945f28363babc8c44d147 100644 (file)
@@ -72,7 +72,8 @@ class CRM_Member_StateMachine_Search extends CRM_Core_StateMachine {
    * to avoid using  conditional state machine, much more efficient
    * and simpler
    *
-   * @param CRM_Core_Controller $controller the controller object
+   * @param CRM_Core_Controller $controller
+   *   The controller object.
    *
    * @param string $formName
    *