X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FContact%2FForm%2FInline%2FOpenID.php;h=e59404ce3a65c9a9d06d3cd4e845e62a6f65b539;hb=1ae1509838474b74d3fba70bdcede8c7445cc809;hp=c1d77bb93ea1f1e022f7723f892c48c065b9aea1;hpb=c6e262c51134924a9cc023dcb0613238fd1d0451;p=civicrm-core.git diff --git a/CRM/Contact/Form/Inline/OpenID.php b/CRM/Contact/Form/Inline/OpenID.php index c1d77bb93e..e59404ce3a 100644 --- a/CRM/Contact/Form/Inline/OpenID.php +++ b/CRM/Contact/Form/Inline/OpenID.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 | +--------------------------------------------------------------------+ -*/ + */ /** * @@ -39,17 +39,17 @@ class CRM_Contact_Form_Inline_OpenID extends CRM_Contact_Form_Inline { /** - * Ims of the contact that is been viewed + * Ims of the contact that is been viewed. */ private $_openids = array(); /** - * No of openid blocks for inline edit + * No of openid blocks for inline edit. */ private $_blockCount = 6; /** - * Call preprocess + * Call preprocess. */ public function preProcess() { parent::preProcess(); @@ -62,7 +62,7 @@ class CRM_Contact_Form_Inline_OpenID extends CRM_Contact_Form_Inline { } /** - * Build the form object elements for openID object + * Build the form object elements for openID object. * * @return void */ @@ -96,7 +96,7 @@ class CRM_Contact_Form_Inline_OpenID extends CRM_Contact_Form_Inline { } /** - * Global validation rules for the form + * Global validation rules for the form. * * @param array $fields * Posted values of the form. @@ -104,7 +104,6 @@ class CRM_Contact_Form_Inline_OpenID extends CRM_Contact_Form_Inline { * List of errors to be posted back to the form. * * @return array - * @static */ public static function formRule($fields, $errors) { $hasData = $hasPrimary = $errors = array(); @@ -135,7 +134,7 @@ class CRM_Contact_Form_Inline_OpenID extends CRM_Contact_Form_Inline { } /** - * Set defaults for the form + * Set defaults for the form. * * @return array */ @@ -155,7 +154,7 @@ class CRM_Contact_Form_Inline_OpenID extends CRM_Contact_Form_Inline { } /** - * Process the form + * Process the form. * * @return void */ @@ -170,4 +169,5 @@ class CRM_Contact_Form_Inline_OpenID extends CRM_Contact_Form_Inline { $this->log(); $this->response(); } + }