X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FContact%2FBAO%2FRelationshipType.php;h=d3b0309fb979dd101224a6cf6d3afc49ae4031dd;hb=bee6039a9e7d03a9aa639db45d4098720f90c5fa;hp=6711f5c99601e499f7ee0358a158f92cab4f75c5;hpb=22fd90d480014f0a551b25bea675a03d2153de78;p=civicrm-core.git diff --git a/CRM/Contact/BAO/RelationshipType.php b/CRM/Contact/BAO/RelationshipType.php index 6711f5c996..d3b0309fb9 100644 --- a/CRM/Contact/BAO/RelationshipType.php +++ b/CRM/Contact/BAO/RelationshipType.php @@ -1,7 +1,7 @@ copyValues($params); if ($relationshipType->find(TRUE)) { @@ -71,7 +70,7 @@ class CRM_Contact_BAO_RelationshipType extends CRM_Contact_DAO_RelationshipType * @return Object DAO object on sucess, null otherwise * @static */ - static function setIsActive($id, $is_active) { + public static function setIsActive($id, $is_active) { return CRM_Core_DAO::setFieldValue('CRM_Contact_DAO_RelationshipType', $id, 'is_active', $is_active); } @@ -82,11 +81,10 @@ class CRM_Contact_BAO_RelationshipType extends CRM_Contact_DAO_RelationshipType * @param array $ids the array that holds all the db ids * * @return CRM_Contact_DAO_RelationshipType - * @access public * @static * */ - static function add(&$params, &$ids) { + public static function add(&$params, &$ids) { //to change name, CRM-3336 if (empty($params['label_a_b']) && !empty($params['name_a_b'])) { $params['label_a_b'] = $params['name_a_b']; @@ -139,7 +137,7 @@ class CRM_Contact_BAO_RelationshipType extends CRM_Contact_DAO_RelationshipType * @return mixed * @static */ - static function del($relationshipTypeId) { + public static function del($relationshipTypeId) { // make sure relationshipTypeId is an integer // @todo review this as most delete functions rely on the api & form layer for this // or do a find first & throw error if no find @@ -177,4 +175,3 @@ UPDATE civicrm_membership_type return $relationshipType->delete(); } } -