X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FBAO%2FMapping.php;h=7857c4bfd5c9f7cff9015ed7d5ae517e951120d4;hb=16bd56a4590b6ded39eaa6abaa15e7904e410445;hp=243e496746d5f25cdb538d36c85c2735e76e9947;hpb=8ea180b7e15f28bc58a8cffa5378fb6337cb955c;p=civicrm-core.git diff --git a/CRM/Core/BAO/Mapping.php b/CRM/Core/BAO/Mapping.php index 243e496746..7857c4bfd5 100644 --- a/CRM/Core/BAO/Mapping.php +++ b/CRM/Core/BAO/Mapping.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 | +--------------------------------------------------------------------+ -*/ + */ /** * @@ -35,14 +35,14 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { /** - * 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. @@ -63,12 +63,12 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { } /** - * Delete the mapping + * Delete the mapping. * * @param int $id * Mapping id. * - * @return boolean + * @return bool */ public static function del($id) { // delete from mapping_field table @@ -89,7 +89,7 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { } /** - * Takes an associative array and creates a contact object + * Takes an associative array and creates a contact object. * * The function extract all the params it needs to initialize the create a * contact object. the params array could contain additional unused name/value @@ -110,7 +110,7 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { } /** - * Get the list of mappings + * Get the list of mappings. * * @param string $mappingTypeId * Mapping type id. @@ -132,7 +132,7 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { } /** - * Get the mapping fields + * Get the mapping fields. * * @param int $mappingId * Mapping id. @@ -197,14 +197,14 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { } /** - * Check Duplicate Mapping Name + * Check Duplicate Mapping Name. * * @param string $nameField * mapping Name. * @param string $mapTypeId * mapping Type. * - * @return boolean + * @return bool */ public static function checkMapping($nameField, $mapTypeId) { $mapping = new CRM_Core_DAO_Mapping(); @@ -245,7 +245,7 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { } /** - * Build the mapping form + * Build the mapping form. * * @param CRM_Core_Form $form * @param string $mappingType @@ -363,7 +363,7 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { foreach (array( 'groups', 'tags', - 'notes' + 'notes', ) as $value) { unset($fields['Individual'][$value]); unset($fields['Household'][$value]); @@ -388,7 +388,7 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { $fields['Contact']['note_body'] = array('title' => $noteTitle . ': ' . ts('Body Only'), 'name' => 'note_body'); $fields['Contact']['note_subject'] = array( 'title' => $noteTitle . ': ' . ts('Subject Only'), - 'name' => 'note_subject' + 'name' => 'note_subject', ); } } @@ -472,8 +472,8 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { $csRelationships = array(); if ($mappingType == 'Export') { - $subTypeRelationshipTypes = - CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, NULL, NULL, $val['parent'], + $subTypeRelationshipTypes + = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, NULL, NULL, $val['parent'], FALSE, 'label', TRUE, $subType); foreach ($subTypeRelationshipTypes as $key => $var) { @@ -952,7 +952,7 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { /** - * Function returns all Custom group Names + * Function returns all Custom group Names. * * @param int $customfieldId * Related file id. @@ -1109,8 +1109,6 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { 0, ); } - - return $fields; } @@ -1190,7 +1188,7 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { $mappingFields->delete(); if (empty($params['mapper'])) { - return; + return NULL; } //save record in mapping field table @@ -1262,4 +1260,5 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { } } } + }