From 66f9e52b3f95c693cc7e322211930c5e5bbd90ef Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Wed, 4 Feb 2015 14:08:48 +1300 Subject: [PATCH] INFRA-132 add full stops --- CRM/Admin/Form/WordReplacements.php | 2 +- CRM/Core/Transaction.php | 12 ++--- CRM/Event/BAO/Event.php | 28 +++++------ CRM/Event/BAO/Participant.php | 36 +++++++------- CRM/Event/BAO/ParticipantPayment.php | 4 +- CRM/Event/BAO/Query.php | 4 +- CRM/Event/Cart/BAO/MerParticipant.php | 2 +- CRM/Event/Cart/Form/MerParticipant.php | 2 +- CRM/Event/Form/EventFees.php | 4 +- CRM/Event/Form/ManageEvent.php | 8 ++-- CRM/Event/Form/ManageEvent/Conference.php | 4 +- CRM/Event/Form/ManageEvent/Delete.php | 8 ++-- CRM/Event/Form/ManageEvent/EventInfo.php | 12 ++--- CRM/Event/Form/ManageEvent/Fee.php | 14 +++--- CRM/Event/Form/ManageEvent/Location.php | 12 ++--- CRM/Event/Form/ManageEvent/Registration.php | 26 +++++----- .../Form/ManageEvent/ScheduleReminders.php | 2 +- CRM/Event/Form/Participant.php | 48 +++++++++---------- CRM/Event/Form/Registration.php | 34 ++++++------- .../Registration/AdditionalParticipant.php | 12 ++--- CRM/Event/Form/Registration/Confirm.php | 16 +++---- .../Form/Registration/ParticipantConfirm.php | 6 +-- CRM/Event/Form/Registration/Register.php | 16 +++---- CRM/Event/Form/Registration/ThankYou.php | 6 +-- CRM/Event/Form/Search.php | 16 +++---- CRM/Event/Form/SearchEvent.php | 2 +- CRM/Event/Form/Task.php | 12 ++--- CRM/Event/Form/Task/AddToGroup.php | 18 +++---- CRM/Event/Form/Task/Cancel.php | 8 ++-- CRM/Event/Form/Task/Email.php | 2 +- CRM/Event/Form/Task/PickProfile.php | 16 +++---- CRM/Event/Form/Task/Print.php | 4 +- CRM/Event/Form/Task/Result.php | 2 +- CRM/Event/Form/Task/SaveSearch.php | 6 +-- CRM/Event/Form/Task/SaveSearch/Update.php | 2 +- CRM/Event/Form/Task/SearchTaskHookSample.php | 4 +- CRM/Note/Form/Note.php | 2 +- CRM/UF/Form/Field.php | 6 +-- 38 files changed, 209 insertions(+), 209 deletions(-) diff --git a/CRM/Admin/Form/WordReplacements.php b/CRM/Admin/Form/WordReplacements.php index be54abf33d..84f8be4794 100644 --- a/CRM/Admin/Form/WordReplacements.php +++ b/CRM/Admin/Form/WordReplacements.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 | +--------------------------------------------------------------------+ -*/ + */ /** * diff --git a/CRM/Core/Transaction.php b/CRM/Core/Transaction.php index b9812acbf4..05c4d1104f 100644 --- a/CRM/Core/Transaction.php +++ b/CRM/Core/Transaction.php @@ -85,7 +85,7 @@ class CRM_Core_Transaction { /** - * These constants represent phases at which callbacks can be invoked + * These constants represent phases at which callbacks can be invoked. */ const PHASE_PRE_COMMIT = 1; const PHASE_POST_COMMIT = 2; @@ -99,7 +99,7 @@ class CRM_Core_Transaction { private $_pseudoCommitted = FALSE; /** - * Ensure that an SQL transaction is started + * Ensure that an SQL transaction is started. * * This is a thin wrapper around __construct() which allows more fluent coding. * @@ -114,7 +114,7 @@ class CRM_Core_Transaction { } /** - * Ensure that an SQL transaction is started + * Ensure that an SQL transaction is started. * * @param bool $nest * Determines what to do if there's currently an active transaction:. @@ -130,7 +130,7 @@ class CRM_Core_Transaction { } /** - * Immediately commit or rollback + * Immediately commit or rollback. * * (Note: Prior to 4.6, return void) * @@ -218,7 +218,7 @@ class CRM_Core_Transaction { } /** - * Determine whether there is a pending transaction + * Determine whether there is a pending transaction. */ static public function isActive() { $frame = \Civi\Core\Transaction\Manager::singleton()->getFrame(); @@ -226,7 +226,7 @@ class CRM_Core_Transaction { } /** - * Add a transaction callback + * Add a transaction callback. * * Note: It's conceivable to add callbacks to the main/overall transaction * (aka $manager->getBaseFrame()) or to the innermost nested transaction diff --git a/CRM/Event/BAO/Event.php b/CRM/Event/BAO/Event.php index dbf9101a79..86453cc85a 100644 --- a/CRM/Event/BAO/Event.php +++ b/CRM/Event/BAO/Event.php @@ -35,14 +35,14 @@ class CRM_Event_BAO_Event extends CRM_Event_DAO_Event { /** - * Class constructor + * Class constructor. */ public function __construct() { parent::__construct(); } /** - * Fetch object based on array of properties + * Fetch object based on array of properties. * * @param array $params * (reference ) an assoc array of name/value pairs. @@ -77,7 +77,7 @@ class CRM_Event_BAO_Event extends CRM_Event_DAO_Event { } /** - * Add the event + * Add the event. * * @param array $params * Reference array contains the values submitted by the form. @@ -116,7 +116,7 @@ class CRM_Event_BAO_Event extends CRM_Event_DAO_Event { } /** - * Create the event + * Create the event. * * @param array $params * Reference array contains the values submitted by the form. @@ -173,7 +173,7 @@ class CRM_Event_BAO_Event extends CRM_Event_DAO_Event { } /** - * Delete the event + * Delete the event. * * @param int $id * Event id. @@ -311,7 +311,7 @@ WHERE ( civicrm_event.is_template IS NULL OR civicrm_event.is_template = 0 )"; } /** - * Get events Summary + * Get events Summary. * * * @return array @@ -576,7 +576,7 @@ $event_summary_limit } /** - * Get participant count + * Get participant count. * * @param int $eventId * @param bool $considerStatus consider status for participant count. @@ -642,7 +642,7 @@ $event_summary_limit } /** - * Get the information to map a event + * Get the information to map a event. * * @param int $id * For which we want map info. @@ -709,7 +709,7 @@ WHERE civicrm_address.geo_code_1 IS NOT NULL } /** - * Get the complete information for one or more events + * Get the complete information for one or more events. * * @param date $start * Get events with start date >= this date. @@ -1431,7 +1431,7 @@ WHERE civicrm_event.is_active = 1 } /** - * Build the array for display the profile fields + * Build the array for display the profile fields. * * @param array $params * Key value. @@ -1881,7 +1881,7 @@ WHERE ce.loc_block_id = $locBlockId"; } /** - * Check if event registration is valid according to permissions AND Dates + * Check if event registration is valid according to permissions AND Dates. * * @param array $values * @param int $eventID @@ -1992,7 +1992,7 @@ WHERE ce.loc_block_id = $locBlockId"; } /** - * Make sure that the user has permission to access this event + * Make sure that the user has permission to access this event. * * @param int $eventId * @param int $type @@ -2137,7 +2137,7 @@ LEFT JOIN civicrm_price_field_value value ON ( value.id = lineItem.price_field } /** - * Retrieve event template default values to be set + * Retrieve event template default values to be set. * as default values for current new event. * * @param int $templateId @@ -2179,7 +2179,7 @@ LEFT JOIN civicrm_price_field_value value ON ( value.id = lineItem.price_field } /** - * Update the Campaign Id of all the participants of the given event + * Update the Campaign Id of all the participants of the given event. * * @param int $eventID * Event id. diff --git a/CRM/Event/BAO/Participant.php b/CRM/Event/BAO/Participant.php index d324b1e9e9..50b3c6336b 100644 --- a/CRM/Event/BAO/Participant.php +++ b/CRM/Event/BAO/Participant.php @@ -37,21 +37,21 @@ class CRM_Event_BAO_Participant extends CRM_Event_DAO_Participant { /** - * Static field for all the participant information that we can potentially import + * Static field for all the participant information that we can potentially import. * * @var array */ static $_importableFields = NULL; /** - * Static field for all the participant information that we can potentially export + * Static field for all the participant information that we can potentially export. * * @var array */ static $_exportableFields = NULL; /** - * Static array for valid status transitions rules + * Static array for valid status transitions rules. * * @var array */ @@ -71,7 +71,7 @@ class CRM_Event_BAO_Participant extends CRM_Event_DAO_Participant { } /** - * Takes an associative array and creates a participant object + * Takes an associative array and creates a participant object. * * the function extract all the params it needs to initialize the create a * participant object. the params array could contain additional unused name/value @@ -183,7 +183,7 @@ class CRM_Event_BAO_Participant extends CRM_Event_DAO_Participant { } /** - * Takes an associative array and creates a participant object + * Takes an associative array and creates a participant object. * * @param array $params * (reference ) an assoc array of name/value pairs. @@ -335,7 +335,7 @@ class CRM_Event_BAO_Participant extends CRM_Event_DAO_Participant { } /** - * Check whether the event is full for participation and return as + * Check whether the event is full for participation and return as. * per requirements. * * @param int $eventId @@ -614,7 +614,7 @@ GROUP BY participant.event_id } /** - * Combine all the importable fields from the lower levels object + * Combine all the importable fields from the lower levels object. * * @param string $contactType * @param bool $status @@ -728,7 +728,7 @@ GROUP BY participant.event_id } /** - * Combine all the exportable fields from the lower levels object + * Combine all the exportable fields from the lower levels object. * * @return array * array of exportable Fields @@ -854,7 +854,7 @@ WHERE civicrm_participant.id = {$participantId} } /** - * Delete the record that are associated with this participation + * Delete the record that are associated with this participation. * * @param int $id * Id of the participation to delete. @@ -914,7 +914,7 @@ WHERE civicrm_participant.id = {$participantId} } /** - * Checks duplicate participants + * Checks duplicate participants. * * @param array $input * An assosiative array of name /value pairs. @@ -958,7 +958,7 @@ WHERE civicrm_participant.id = {$participantId} } /** - * Fix the event level + * Fix the event level. * * When price sets are used as event fee, fee_level is set as ^A * separated string. We need to change that string to comma @@ -1141,7 +1141,7 @@ INNER JOIN civicrm_price_field_value value ON ( value.id = lineItem.price_field_ } /** - * Function for update primary and additional participant status + * Function for update primary and additional participant status. * * @param int $participantID * Primary participant's id. @@ -1176,7 +1176,7 @@ INNER JOIN civicrm_price_field_value value ON ( value.id = lineItem.price_field_ } /** - * Function for update status for given participant ids + * Function for update status for given participant ids. * * @param int $participantIds * Array of participant ids. @@ -1655,7 +1655,7 @@ UPDATE civicrm_participant } /** - * Check for whether participant is primary or not + * Check for whether participant is primary or not. * * @param int $participantId * @@ -1674,7 +1674,7 @@ UPDATE civicrm_participant } /** - * Get additional participant Ids for cascading with primary participant status + * Get additional participant Ids for cascading with primary participant status. * * @param int $participantId * Participant id. @@ -1706,7 +1706,7 @@ UPDATE civicrm_participant } /** - * Get participant record count for a Contact + * Get participant record count for a Contact. * * @param int $contactID * @@ -1722,7 +1722,7 @@ WHERE civicrm_participant.contact_id = {$contactID} AND } /** - * Get participant ids by contribution id + * Get participant ids by contribution id. * * @param int $contributionId * Contribution Id. @@ -1822,7 +1822,7 @@ WHERE cpf.price_set_id = %1 AND cpfv.label LIKE %2"; } /** - * Delete participants of contact + * Delete participants of contact. * * CRM-12155 * diff --git a/CRM/Event/BAO/ParticipantPayment.php b/CRM/Event/BAO/ParticipantPayment.php index 284d536f98..c0b60fcd70 100644 --- a/CRM/Event/BAO/ParticipantPayment.php +++ b/CRM/Event/BAO/ParticipantPayment.php @@ -36,7 +36,7 @@ class CRM_Event_BAO_ParticipantPayment extends CRM_Event_DAO_ParticipantPayment { /** - * Creates or updates a participant payment record + * Creates or updates a participant payment record. * * @param array $params * of values to initialize the record with. @@ -93,7 +93,7 @@ class CRM_Event_BAO_ParticipantPayment extends CRM_Event_DAO_ParticipantPayment } /** - * Delete the record that are associated with this ParticipantPayment + * Delete the record that are associated with this ParticipantPayment. * Also deletes the associated contribution for this participant * * @param array $params diff --git a/CRM/Event/BAO/Query.php b/CRM/Event/BAO/Query.php index c9d64bedd9..6137a05248 100644 --- a/CRM/Event/BAO/Query.php +++ b/CRM/Event/BAO/Query.php @@ -55,7 +55,7 @@ class CRM_Event_BAO_Query { } /** - * Build select for CiviEvent + * Build select for CiviEvent. * * @param $query * @@ -457,7 +457,7 @@ class CRM_Event_BAO_Query { } /** - * Getter for the qill object + * Getter for the qill object. * * @return string */ diff --git a/CRM/Event/Cart/BAO/MerParticipant.php b/CRM/Event/Cart/BAO/MerParticipant.php index 34aba376d8..3ea0e771a4 100644 --- a/CRM/Event/Cart/BAO/MerParticipant.php +++ b/CRM/Event/Cart/BAO/MerParticipant.php @@ -34,7 +34,7 @@ class CRM_Event_Cart_BAO_MerParticipant extends CRM_Event_BAO_Participant { public $cart = NULL; /** - * XXX + * XXX. * @param null $participant */ public function __construct($participant = NULL) { diff --git a/CRM/Event/Cart/Form/MerParticipant.php b/CRM/Event/Cart/Form/MerParticipant.php index 1bf67c95a7..10eb520be6 100644 --- a/CRM/Event/Cart/Form/MerParticipant.php +++ b/CRM/Event/Cart/Form/MerParticipant.php @@ -108,7 +108,7 @@ class CRM_Event_Cart_Form_MerParticipant extends CRM_Core_Form { } /** - * XXX poor name + * XXX poor name. * @param $participant * * @return CRM_Event_Cart_Form_MerParticipant diff --git a/CRM/Event/Form/EventFees.php b/CRM/Event/Form/EventFees.php index 3a77aaaba2..48b1cbff94 100644 --- a/CRM/Event/Form/EventFees.php +++ b/CRM/Event/Form/EventFees.php @@ -40,7 +40,7 @@ class CRM_Event_Form_EventFees { /** - * Set variables up before form is built + * Set variables up before form is built. * * @param CRM_Core_Form $form * @@ -340,7 +340,7 @@ SELECT id, html_type } /** - * Build the form object + * Build the form object. * * @param CRM_Core_Form $form * diff --git a/CRM/Event/Form/ManageEvent.php b/CRM/Event/Form/ManageEvent.php index 5644904319..71e00a3981 100644 --- a/CRM/Event/Form/ManageEvent.php +++ b/CRM/Event/Form/ManageEvent.php @@ -40,7 +40,7 @@ class CRM_Event_Form_ManageEvent extends CRM_Core_Form { /** - * The id of the event we are proceessing + * The id of the event we are proceessing. * * @var int */ @@ -83,12 +83,12 @@ class CRM_Event_Form_ManageEvent extends CRM_Core_Form { protected $_campaignID = NULL; /** - * Check if repeating event + * Check if repeating event. */ protected $_isRepeatingEvent; /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -257,7 +257,7 @@ class CRM_Event_Form_ManageEvent extends CRM_Core_Form { } /** - * Build the form object + * Build the form object. * * @return void */ diff --git a/CRM/Event/Form/ManageEvent/Conference.php b/CRM/Event/Form/ManageEvent/Conference.php index 55405d95c6..d7739b889d 100644 --- a/CRM/Event/Form/ManageEvent/Conference.php +++ b/CRM/Event/Form/ManageEvent/Conference.php @@ -40,7 +40,7 @@ class CRM_Event_Form_ManageEvent_Conference extends CRM_Event_Form_ManageEvent { /** - * Page action + * Page action. */ public $_action; @@ -70,7 +70,7 @@ class CRM_Event_Form_ManageEvent_Conference extends CRM_Event_Form_ManageEvent { } /** - * Build the form object + * Build the form object. * * @return void */ diff --git a/CRM/Event/Form/ManageEvent/Delete.php b/CRM/Event/Form/ManageEvent/Delete.php index 64acb6d04c..6114a23aac 100644 --- a/CRM/Event/Form/ManageEvent/Delete.php +++ b/CRM/Event/Form/ManageEvent/Delete.php @@ -39,14 +39,14 @@ class CRM_Event_Form_ManageEvent_Delete extends CRM_Event_Form_ManageEvent { /** - * Page title + * Page title. * * @var string */ protected $_title; /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -66,7 +66,7 @@ class CRM_Event_Form_ManageEvent_Delete extends CRM_Event_Form_ManageEvent { } /** - * Build the form object + * Build the form object. * * @return void */ @@ -88,7 +88,7 @@ class CRM_Event_Form_ManageEvent_Delete extends CRM_Event_Form_ManageEvent { } /** - * Process the form when submitted + * Process the form when submitted. * * @return void */ diff --git a/CRM/Event/Form/ManageEvent/EventInfo.php b/CRM/Event/Form/ManageEvent/EventInfo.php index c13daa72cc..89d27e4504 100644 --- a/CRM/Event/Form/ManageEvent/EventInfo.php +++ b/CRM/Event/Form/ManageEvent/EventInfo.php @@ -41,12 +41,12 @@ class CRM_Event_Form_ManageEvent_EventInfo extends CRM_Event_Form_ManageEvent { /** - * Event type + * Event type. */ protected $_eventType = NULL; /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -148,7 +148,7 @@ class CRM_Event_Form_ManageEvent_EventInfo extends CRM_Event_Form_ManageEvent { } /** - * Build the form object + * Build the form object. * * @return void */ @@ -236,7 +236,7 @@ class CRM_Event_Form_ManageEvent_EventInfo extends CRM_Event_Form_ManageEvent { } /** - * Global validation rules for the form + * Global validation rules for the form. * * @param array $values * @@ -268,7 +268,7 @@ class CRM_Event_Form_ManageEvent_EventInfo extends CRM_Event_Form_ManageEvent { } /** - * Process the form submission + * Process the form submission. * * * @return void @@ -343,7 +343,7 @@ class CRM_Event_Form_ManageEvent_EventInfo extends CRM_Event_Form_ManageEvent { } /** - * Retrieve event template custom data values + * Retrieve event template custom data values. * and set as default values for current new event. * * @param int $templateId diff --git a/CRM/Event/Form/ManageEvent/Fee.php b/CRM/Event/Form/ManageEvent/Fee.php index c6b96f7bcc..7355d95764 100644 --- a/CRM/Event/Form/ManageEvent/Fee.php +++ b/CRM/Event/Form/ManageEvent/Fee.php @@ -50,17 +50,17 @@ class CRM_Event_Form_ManageEvent_Fee extends CRM_Event_Form_ManageEvent { const NUM_DISCOUNT = 6; /** - * Page action + * Page action. */ public $_action; /** - * In Date + * In Date. */ private $_inDate; /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -246,7 +246,7 @@ class CRM_Event_Form_ManageEvent_Fee extends CRM_Event_Form_ManageEvent { } /** - * Build the form object + * Build the form object. * * @return void */ @@ -392,7 +392,7 @@ class CRM_Event_Form_ManageEvent_Fee extends CRM_Event_Form_ManageEvent { } /** - * Add local and global form rules + * Add local and global form rules. * * * @return void @@ -402,7 +402,7 @@ class CRM_Event_Form_ManageEvent_Fee extends CRM_Event_Form_ManageEvent { } /** - * Global validation rules for the form + * Global validation rules for the form. * * @param array $values * Posted values of the form. @@ -549,7 +549,7 @@ class CRM_Event_Form_ManageEvent_Fee extends CRM_Event_Form_ManageEvent { } /** - * Process the form + * Process the form. * * @return void */ diff --git a/CRM/Event/Form/ManageEvent/Location.php b/CRM/Event/Form/ManageEvent/Location.php index b4a433f728..2b7ed45efc 100644 --- a/CRM/Event/Form/ManageEvent/Location.php +++ b/CRM/Event/Form/ManageEvent/Location.php @@ -63,12 +63,12 @@ class CRM_Event_Form_ManageEvent_Location extends CRM_Event_Form_ManageEvent { protected $_oldLocBlockId = 0; /** - * Get the db values for this form + * Get the db values for this form. */ public $_values = array(); /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -125,7 +125,7 @@ class CRM_Event_Form_ManageEvent_Location extends CRM_Event_Form_ManageEvent { } /** - * Add local and global form rules + * Add local and global form rules. * * * @return void @@ -135,7 +135,7 @@ class CRM_Event_Form_ManageEvent_Location extends CRM_Event_Form_ManageEvent { } /** - * Global validation rules for the form + * Global validation rules for the form. * * @param array $fields * Posted values of the form. @@ -151,7 +151,7 @@ class CRM_Event_Form_ManageEvent_Location extends CRM_Event_Form_ManageEvent { } /** - * function to build location block + * function to build location block. * * @return void */ @@ -213,7 +213,7 @@ class CRM_Event_Form_ManageEvent_Location extends CRM_Event_Form_ManageEvent { } /** - * Process the form submission + * Process the form submission. * * * @return void diff --git a/CRM/Event/Form/ManageEvent/Registration.php b/CRM/Event/Form/ManageEvent/Registration.php index bd434e9a05..39533f0627 100644 --- a/CRM/Event/Form/ManageEvent/Registration.php +++ b/CRM/Event/Form/ManageEvent/Registration.php @@ -51,7 +51,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent protected $_profilePostMultipleAdd = array(); /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -221,7 +221,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Build the form object + * Build the form object. * * @return void */ @@ -308,7 +308,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Build Registration Block + * Build Registration Block. * * @param CRM_Core_Form $form * @@ -336,7 +336,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Subroutine to insert a Profile Editor widget + * Subroutine to insert a Profile Editor widget. * depends on getProfileSelectorTypes * * @param array &$form @@ -357,7 +357,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Create initializers for addprofileSelector + * Create initializers for addprofileSelector. * * @return array * ['allowCoreTypes' => array, 'allowSubTypes' => array, 'profileEntities' => array] @@ -394,7 +394,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Build Confirmation Block + * Build Confirmation Block. * * @param CRM_Core_Form $form * @@ -421,7 +421,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Build Email Block + * Build Email Block. * * @param CRM_Core_Form $form * @@ -459,7 +459,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Add local and global form rules + * Add local and global form rules. * * * @return void @@ -472,7 +472,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Global validation rules for the form + * Global validation rules for the form. * * @param array $values * @param $files @@ -663,7 +663,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Collect all email fields for an array of profile ids + * Collect all email fields for an array of profile ids. * * @param $profileIds * @return bool @@ -684,7 +684,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Check if a profile contains required fields + * Check if a profile contains required fields. * * @param $profileIds * @return bool @@ -718,7 +718,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Check if the profiles collect enough information to dedupe + * Check if the profiles collect enough information to dedupe. * * @param $profileIds * @param int $rgId @@ -810,7 +810,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent } /** - * Process the form submission + * Process the form submission. * * * @return void diff --git a/CRM/Event/Form/ManageEvent/ScheduleReminders.php b/CRM/Event/Form/ManageEvent/ScheduleReminders.php index e08aaa5129..778182ee7e 100644 --- a/CRM/Event/Form/ManageEvent/ScheduleReminders.php +++ b/CRM/Event/Form/ManageEvent/ScheduleReminders.php @@ -41,7 +41,7 @@ class CRM_Event_Form_ManageEvent_ScheduleReminders extends CRM_Event_Form_ManageEvent { /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ diff --git a/CRM/Event/Form/Participant.php b/CRM/Event/Form/Participant.php index 3ee04fe61c..7d33290303 100644 --- a/CRM/Event/Form/Participant.php +++ b/CRM/Event/Form/Participant.php @@ -43,14 +43,14 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment public $useLivePageJS = TRUE; /** - * The values for the contribution db object + * The values for the contribution db object. * * @var array */ public $_values; /** - * The values for the quickconfig for priceset + * The values for the quickconfig for priceset. * * @var boolean */ @@ -64,35 +64,35 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment public $_priceSetId; /** - * Array of fields for the price set + * Array of fields for the price set. * * @var array */ public $_priceSet; /** - * The id of the participation that we are proceessing + * The id of the participation that we are proceessing. * * @var int */ public $_id; /** - * The id of the note + * The id of the note. * * @var int */ protected $_noteId = NULL; /** - * The id of the contact associated with this participation + * The id of the contact associated with this participation. * * @var int */ public $_contactId; /** - * Array of event values + * Array of event values. * * @var array */ @@ -107,52 +107,52 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment public $_single = FALSE; /** - * If event is paid or unpaid + * If event is paid or unpaid. */ public $_isPaidEvent; /** - * Page action + * Page action. */ public $_action; /** - * Role Id + * Role Id. */ protected $_roleId = NULL; /** - * Event Type Id + * Event Type Id. */ protected $_eventTypeId = NULL; /** - * Participant status Id + * Participant status Id. */ protected $_statusId = NULL; /** - * Cache all the participant statuses + * Cache all the participant statuses. */ protected $_participantStatuses; /** - * Participant mode + * Participant mode. */ public $_mode = NULL; /** - * Event ID preselect + * Event ID preselect. */ public $_eID = NULL; /** - * Line Item for Price Set + * Line Item for Price Set. */ public $_lineItem = NULL; /** - * Contribution mode for event registration for offline mode + * Contribution mode for event registration for offline mode. */ public $_contributeMode = 'direct'; @@ -169,12 +169,12 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment protected $_eventNameCustomDataTypeID; /** - * Selected discount id + * Selected discount id. */ public $_originalDiscountId = NULL; /** - * Event id + * Event id. */ public $_eventId = NULL; @@ -190,7 +190,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment public $_onlinePendingContributionId = NULL; /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -581,7 +581,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment } /** - * Build the form object + * Build the form object. * * @return void */ @@ -780,7 +780,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment } /** - * Add local and global form rules + * Add local and global form rules. * * * @return void @@ -790,7 +790,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment } /** - * Global validation rules for the form + * Global validation rules for the form. * * @param array $values * Posted values of the form. @@ -866,7 +866,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment } /** - * Process the form submission + * Process the form submission. */ public function postProcess() { // get the submitted form values. diff --git a/CRM/Event/Form/Registration.php b/CRM/Event/Form/Registration.php index dba9b6bf57..501c6df387 100644 --- a/CRM/Event/Form/Registration.php +++ b/CRM/Event/Form/Registration.php @@ -49,21 +49,21 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { const LOCATION_BLOCKS = 1; /** - * The id of the event we are proceessing + * The id of the event we are proceessing. * * @var int */ public $_eventId; /** - * The array of ids of all the participant we are proceessing + * The array of ids of all the participant we are proceessing. * * @var int */ protected $_participantIDS = NULL; /** - * The id of the participant we are proceessing + * The id of the participant we are proceessing. * * @var int */ @@ -77,7 +77,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { public $_allowConfirmation; /** - * Is participant requires approval + * Is participant requires approval. * * @var Boolean */ @@ -91,7 +91,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { public $_allowWaitlist; /** - * Store additional participant ids + * Store additional participant ids. * when there are pre-registered. * * @var array @@ -99,7 +99,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { public $_additionalParticipantIds; /** - * The mode that we are in + * The mode that we are in. * * @var string * @protect @@ -107,35 +107,35 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { public $_mode; /** - * The values for the contribution db object + * The values for the contribution db object. * * @var array */ public $_values; /** - * The paymentProcessor attributes for this page + * The paymentProcessor attributes for this page. * * @var array */ public $_paymentProcessor; /** - * The params submitted by the form and computed by the app + * The params submitted by the form and computed by the app. * * @var array */ protected $_params; /** - * The fields involved in this contribution page + * The fields involved in this contribution page. * * @var array */ public $_fields; /** - * The billing location id for this contribiution page + * The billing location id for this contribiution page. * * @var int */ @@ -149,7 +149,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { public $_priceSetId = NULL; /** - * Array of fields for the price set + * Array of fields for the price set. * * @var array */ @@ -175,7 +175,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { public $_isBillingAddressRequiredForPayLater; /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -459,7 +459,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { } /** - * Assign the minimal set of variables to the template + * Assign the minimal set of variables to the template. * * @return void */ @@ -558,7 +558,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { } /** - * Add the custom fields + * Add the custom fields. * * @param int $id * @param string $name @@ -720,7 +720,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { } /** - * Handle process after the confirmation of payment by User + * Handle process after the confirmation of payment by User. * * @param int $contactID * @param null $contribution @@ -824,7 +824,7 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { } /** - * Process the participant + * Process the participant. * * @param CRM_Core_Form $form * @param int $contactID diff --git a/CRM/Event/Form/Registration/AdditionalParticipant.php b/CRM/Event/Form/Registration/AdditionalParticipant.php index 90200122df..3fba722078 100644 --- a/CRM/Event/Form/Registration/AdditionalParticipant.php +++ b/CRM/Event/Form/Registration/AdditionalParticipant.php @@ -41,7 +41,7 @@ class CRM_Event_Form_Registration_AdditionalParticipant extends CRM_Event_Form_Registration { /** - * The defaults involved in this page + * The defaults involved in this page. */ public $_defaults = array(); @@ -51,7 +51,7 @@ class CRM_Event_Form_Registration_AdditionalParticipant extends CRM_Event_Form_R public $additionalParticipantId = NULL; /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -160,7 +160,7 @@ class CRM_Event_Form_Registration_AdditionalParticipant extends CRM_Event_Form_R } /** - * Build the form object + * Build the form object. * * @return void */ @@ -375,7 +375,7 @@ class CRM_Event_Form_Registration_AdditionalParticipant extends CRM_Event_Form_R } /** - * Global form rule + * Global form rule. * * @param array $fields * The input form values. @@ -583,7 +583,7 @@ class CRM_Event_Form_Registration_AdditionalParticipant extends CRM_Event_Form_R } /** - * Process the form submission + * Process the form submission. * * * @return void @@ -759,7 +759,7 @@ class CRM_Event_Form_Registration_AdditionalParticipant extends CRM_Event_Form_R } /** - * Check whether call current participant is last one + * Check whether call current participant is last one. * * @param bool $isButtonJs * diff --git a/CRM/Event/Form/Registration/Confirm.php b/CRM/Event/Form/Registration/Confirm.php index 89b83cda24..b4f2c02ef3 100644 --- a/CRM/Event/Form/Registration/Confirm.php +++ b/CRM/Event/Form/Registration/Confirm.php @@ -41,21 +41,21 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration { /** - * The values for the contribution db object + * The values for the contribution db object. * * @var array */ public $_values; /** - * The total amount + * The total amount. * * @var float */ public $_totalAmount; /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -220,7 +220,7 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration { } /** - * Build the form object + * Build the form object. * * @return void */ @@ -427,7 +427,7 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration { } /** - * Process the form submission + * Process the form submission. * * * @return void @@ -953,7 +953,7 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration { } /** - * Process the contribution + * Process the contribution. * * @param CRM_Core_Form $form * @param array $params @@ -1073,7 +1073,7 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration { } /** - * Fix the Location Fields + * Fix the Location Fields. * * @param array $params * @param $fields @@ -1121,7 +1121,7 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration { } /** - * Update contact fields + * Update contact fields. * * @param int $contactID * @param array $params diff --git a/CRM/Event/Form/Registration/ParticipantConfirm.php b/CRM/Event/Form/Registration/ParticipantConfirm.php index f84f1447b9..9c23a68d1e 100644 --- a/CRM/Event/Form/Registration/ParticipantConfirm.php +++ b/CRM/Event/Form/Registration/ParticipantConfirm.php @@ -44,7 +44,7 @@ class CRM_Event_Form_Registration_ParticipantConfirm extends CRM_Event_Form_Regi protected $_cc = NULL; /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -90,7 +90,7 @@ class CRM_Event_Form_Registration_ParticipantConfirm extends CRM_Event_Form_Regi } /** - * Build the form object + * Build the form object. * * @return void */ @@ -167,7 +167,7 @@ class CRM_Event_Form_Registration_ParticipantConfirm extends CRM_Event_Form_Regi } /** - * Process the form submission + * Process the form submission. * * * @return void diff --git a/CRM/Event/Form/Registration/Register.php b/CRM/Event/Form/Registration/Register.php index 968ec60b33..780081484e 100644 --- a/CRM/Event/Form/Registration/Register.php +++ b/CRM/Event/Form/Registration/Register.php @@ -41,12 +41,12 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration { /** - * The fields involved in this page + * The fields involved in this page. */ public $_fields; /** - * The defaults involved in this page + * The defaults involved in this page. */ public $_defaults; @@ -80,7 +80,7 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration { public $_paymentFields = array(); /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -306,7 +306,7 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration { } /** - * Build the form object + * Build the form object. * * @return void */ @@ -798,7 +798,7 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration { } /** - * Global form rule + * Global form rule. * * @param array $fields * The input form values. @@ -966,7 +966,7 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration { } /** - * Process the form submission + * Process the form submission. * * * @return void @@ -1207,7 +1207,7 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration { } /** - * Process Registration of free event + * Process Registration of free event. * * @param array $params * Form values. @@ -1387,7 +1387,7 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration { } /** - * Method to check if the user is already registered for the event + * Method to check if the user is already registered for the event. * and if result found redirect to the event info page * * @param array $fields diff --git a/CRM/Event/Form/Registration/ThankYou.php b/CRM/Event/Form/Registration/ThankYou.php index b6a00b6d34..770b6364be 100644 --- a/CRM/Event/Form/Registration/ThankYou.php +++ b/CRM/Event/Form/Registration/ThankYou.php @@ -41,7 +41,7 @@ class CRM_Event_Form_Registration_ThankYou extends CRM_Event_Form_Registration { /** - * Set variables up before form is built + * Set variables up before form is built. * * @return void */ @@ -82,7 +82,7 @@ class CRM_Event_Form_Registration_ThankYou extends CRM_Event_Form_Registration { } /** - * Build the form object + * Build the form object. * * @return void */ @@ -236,7 +236,7 @@ class CRM_Event_Form_Registration_ThankYou extends CRM_Event_Form_Registration { } /** - * Process the form submission + * Process the form submission. * * * @return void diff --git a/CRM/Event/Form/Search.php b/CRM/Event/Form/Search.php index 2ca00941ae..d83b0345be 100644 --- a/CRM/Event/Form/Search.php +++ b/CRM/Event/Form/Search.php @@ -43,42 +43,42 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search { /** - * The params that are sent to the query + * The params that are sent to the query. * * @var array */ protected $_queryParams; /** - * Are we restricting ourselves to a single contact + * Are we restricting ourselves to a single contact. * * @var boolean */ protected $_single = FALSE; /** - * Are we restricting ourselves to a single contact + * Are we restricting ourselves to a single contact. * * @var boolean */ protected $_limit = NULL; /** - * Prefix for the controller + * Prefix for the controller. */ protected $_prefix = "event_"; protected $_defaults; /** - * The saved search ID retrieved from the GET vars + * The saved search ID retrieved from the GET vars. * * @var int */ protected $_ssID; /** - * Processing needed for buildForm and later + * Processing needed for buildForm and later. * * @return void */ @@ -163,7 +163,7 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search { } /** - * Build the form object + * Build the form object. * * * @return void @@ -350,7 +350,7 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search { } /** - * Set the default form values + * Set the default form values. * * * @return array diff --git a/CRM/Event/Form/SearchEvent.php b/CRM/Event/Form/SearchEvent.php index db96476819..75d8bbc350 100644 --- a/CRM/Event/Form/SearchEvent.php +++ b/CRM/Event/Form/SearchEvent.php @@ -51,7 +51,7 @@ class CRM_Event_Form_SearchEvent extends CRM_Core_Form { } /** - * Build the form object + * Build the form object. * * * @return void diff --git a/CRM/Event/Form/Task.php b/CRM/Event/Form/Task.php index d3d8b655f5..1deb17da0d 100644 --- a/CRM/Event/Form/Task.php +++ b/CRM/Event/Form/Task.php @@ -40,35 +40,35 @@ class CRM_Event_Form_Task extends CRM_Core_Form { /** - * The task being performed + * The task being performed. * * @var int */ protected $_task; /** - * The additional clause that we restrict the search with + * The additional clause that we restrict the search with. * * @var string */ protected $_componentClause = NULL; /** - * The array that holds all the component ids + * The array that holds all the component ids. * * @var array */ protected $_componentIds; /** - * The array that holds all the participant ids + * The array that holds all the participant ids. * * @var array */ protected $_participantIds; /** - * Build all the data structures needed to build the form + * Build all the data structures needed to build the form. * * @param * @@ -155,7 +155,7 @@ class CRM_Event_Form_Task extends CRM_Core_Form { } /** - * Simple shell that derived classes can call to add buttons to + * Simple shell that derived classes can call to add buttons to. * the form with a customized title for the main Submit * * @param string $title diff --git a/CRM/Event/Form/Task/AddToGroup.php b/CRM/Event/Form/Task/AddToGroup.php index 6a2d7f2be9..a05cc15969 100644 --- a/CRM/Event/Form/Task/AddToGroup.php +++ b/CRM/Event/Form/Task/AddToGroup.php @@ -41,28 +41,28 @@ class CRM_Event_Form_Task_AddToGroup extends CRM_Event_Form_Task { /** - * The context that we are working on + * The context that we are working on. * * @var string */ protected $_context; /** - * The groupId retrieved from the GET vars + * The groupId retrieved from the GET vars. * * @var int */ protected $_id; /** - * The title of the group + * The title of the group. * * @var string */ protected $_title; /** - * Build all the data structures needed to build the form + * Build all the data structures needed to build the form. * * @return void */ @@ -76,7 +76,7 @@ class CRM_Event_Form_Task_AddToGroup extends CRM_Event_Form_Task { } /** - * Build the form object + * Build the form object. * * * @return void @@ -148,7 +148,7 @@ class CRM_Event_Form_Task_AddToGroup extends CRM_Event_Form_Task { } /** - * Set the default form values + * Set the default form values. * * * @return array @@ -166,7 +166,7 @@ class CRM_Event_Form_Task_AddToGroup extends CRM_Event_Form_Task { } /** - * Add local and global form rules + * Add local and global form rules. * * * @return void @@ -176,7 +176,7 @@ class CRM_Event_Form_Task_AddToGroup extends CRM_Event_Form_Task { } /** - * Global validation rules for the form + * Global validation rules for the form. * * @param array $params * Posted values of the form. @@ -198,7 +198,7 @@ class CRM_Event_Form_Task_AddToGroup extends CRM_Event_Form_Task { } /** - * Process the form after the input has been submitted and validated + * Process the form after the input has been submitted and validated. * * * @return void diff --git a/CRM/Event/Form/Task/Cancel.php b/CRM/Event/Form/Task/Cancel.php index bf18443710..6e3581af59 100644 --- a/CRM/Event/Form/Task/Cancel.php +++ b/CRM/Event/Form/Task/Cancel.php @@ -39,12 +39,12 @@ class CRM_Event_Form_Task_Cancel extends CRM_Event_Form_Task { /** - * Variable to store redirect path + * Variable to store redirect path. */ protected $_userContext; /** - * Build all the data structures needed to build the form + * Build all the data structures needed to build the form. * * @return void */ @@ -57,7 +57,7 @@ class CRM_Event_Form_Task_Cancel extends CRM_Event_Form_Task { } /** - * Build the form object + * Build the form object. * * * @return void @@ -69,7 +69,7 @@ class CRM_Event_Form_Task_Cancel extends CRM_Event_Form_Task { } /** - * Process the form after the input has been submitted and validated + * Process the form after the input has been submitted and validated. * * * @return void diff --git a/CRM/Event/Form/Task/Email.php b/CRM/Event/Form/Task/Email.php index 8b2baec425..22bea5f049 100644 --- a/CRM/Event/Form/Task/Email.php +++ b/CRM/Event/Form/Task/Email.php @@ -55,7 +55,7 @@ class CRM_Event_Form_Task_Email extends CRM_Event_Form_Task { public $_noEmails = FALSE; /** - * All the existing templates in the system + * All the existing templates in the system. * * @var array */ diff --git a/CRM/Event/Form/Task/PickProfile.php b/CRM/Event/Form/Task/PickProfile.php index e07e548975..3e3e4b8a5a 100644 --- a/CRM/Event/Form/Task/PickProfile.php +++ b/CRM/Event/Form/Task/PickProfile.php @@ -39,24 +39,24 @@ class CRM_Event_Form_Task_PickProfile extends CRM_Event_Form_Task { /** - * The title of the group + * The title of the group. * * @var string */ protected $_title; /** - * Maximum event participations that should be allowed to update + * Maximum event participations that should be allowed to update. */ protected $_maxParticipations = 100; /** - * Variable to store redirect path + * Variable to store redirect path. */ protected $_userContext; /** - * Build all the data structures needed to build the form + * Build all the data structures needed to build the form. * * @return void */ @@ -83,7 +83,7 @@ class CRM_Event_Form_Task_PickProfile extends CRM_Event_Form_Task { } /** - * Build the form object + * Build the form object. * * * @return void @@ -106,7 +106,7 @@ class CRM_Event_Form_Task_PickProfile extends CRM_Event_Form_Task { } /** - * Add local and global form rules + * Add local and global form rules. * * * @return void @@ -116,7 +116,7 @@ class CRM_Event_Form_Task_PickProfile extends CRM_Event_Form_Task { } /** - * Global validation rules for the form + * Global validation rules for the form. * * @param array $fields * Posted values of the form. @@ -129,7 +129,7 @@ class CRM_Event_Form_Task_PickProfile extends CRM_Event_Form_Task { } /** - * Process the form after the input has been submitted and validated + * Process the form after the input has been submitted and validated. * * * @return void diff --git a/CRM/Event/Form/Task/Print.php b/CRM/Event/Form/Task/Print.php index fe1b8961d4..22a9ee62c7 100644 --- a/CRM/Event/Form/Task/Print.php +++ b/CRM/Event/Form/Task/Print.php @@ -39,7 +39,7 @@ class CRM_Event_Form_Task_Print extends CRM_Event_Form_Task { /** - * Build all the data structures needed to build the form + * Build all the data structures needed to build the form. * * @return void */ @@ -93,7 +93,7 @@ class CRM_Event_Form_Task_Print extends CRM_Event_Form_Task { } /** - * Process the form after the input has been submitted and validated + * Process the form after the input has been submitted and validated. * * * @return void diff --git a/CRM/Event/Form/Task/Result.php b/CRM/Event/Form/Task/Result.php index 9ddbe104c2..4168372228 100644 --- a/CRM/Event/Form/Task/Result.php +++ b/CRM/Event/Form/Task/Result.php @@ -41,7 +41,7 @@ class CRM_Event_Form_Task_Result extends CRM_Event_Form_Task { /** - * Build all the data structures needed to build the form + * Build all the data structures needed to build the form. * * @return void */ diff --git a/CRM/Event/Form/Task/SaveSearch.php b/CRM/Event/Form/Task/SaveSearch.php index a3df306302..89a7250a26 100644 --- a/CRM/Event/Form/Task/SaveSearch.php +++ b/CRM/Event/Form/Task/SaveSearch.php @@ -41,14 +41,14 @@ class CRM_Event_Form_Task_SaveSearch extends CRM_Event_Form_Task { /** - * Saved search id if any + * Saved search id if any. * * @var int */ protected $_id; /** - * Build all the data structures needed to build the form + * Build all the data structures needed to build the form. * * @return void */ @@ -102,7 +102,7 @@ class CRM_Event_Form_Task_SaveSearch extends CRM_Event_Form_Task { } /** - * Process the form after the input has been submitted and validated + * Process the form after the input has been submitted and validated. * * * @return void diff --git a/CRM/Event/Form/Task/SaveSearch/Update.php b/CRM/Event/Form/Task/SaveSearch/Update.php index 5c514e6e68..e5031f6e41 100644 --- a/CRM/Event/Form/Task/SaveSearch/Update.php +++ b/CRM/Event/Form/Task/SaveSearch/Update.php @@ -40,7 +40,7 @@ class CRM_Event_Form_Task_SaveSearch_Update extends CRM_Event_Form_Task_SaveSearch { /** - * Build all the data structures needed to build the form + * Build all the data structures needed to build the form. * * @return void */ diff --git a/CRM/Event/Form/Task/SearchTaskHookSample.php b/CRM/Event/Form/Task/SearchTaskHookSample.php index cbc13685e8..88cfc9b9d7 100644 --- a/CRM/Event/Form/Task/SearchTaskHookSample.php +++ b/CRM/Event/Form/Task/SearchTaskHookSample.php @@ -39,7 +39,7 @@ class CRM_Event_Form_Task_SearchTaskHookSample extends CRM_Event_Form_Task { /** - * Build all the data structures needed to build the form + * Build all the data structures needed to build the form. * * @return void */ @@ -71,7 +71,7 @@ class CRM_Event_Form_Task_SearchTaskHookSample extends CRM_Event_Form_Task { } /** - * Build the form object + * Build the form object. * * @return void */ diff --git a/CRM/Note/Form/Note.php b/CRM/Note/Form/Note.php index 464ea01602..8368b3b9b2 100644 --- a/CRM/Note/Form/Note.php +++ b/CRM/Note/Form/Note.php @@ -113,7 +113,7 @@ class CRM_Note_Form_Note extends CRM_Core_Form { } /** - * Build the form object + * Build the form object. * * @return void */ diff --git a/CRM/UF/Form/Field.php b/CRM/UF/Form/Field.php index 968bdf57e6..2b7e89b77a 100644 --- a/CRM/UF/Form/Field.php +++ b/CRM/UF/Form/Field.php @@ -60,21 +60,21 @@ class CRM_UF_Form_Field extends CRM_Core_Form { protected $_fields; /** - * The title for field + * The title for field. * * @var int */ protected $_title; /** - * The set of fields sent to the select element + * The set of fields sent to the select element. * * @var array */ protected $_selectFields; /** - * store fields with if locationtype exits status + * store fields with if locationtype exits status. * * @var array */ -- 2.25.1