Fix calls to Request::retrieve
[civicrm-core.git] / CRM / Contact / Page / Inline / OpenID.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035
TO
9 +--------------------------------------------------------------------+
10 */
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
95cdcc0f 19 * Dummy page for details for OpenID.
6a488035
TO
20 */
21class CRM_Contact_Page_Inline_OpenID extends CRM_Core_Page {
22
23 /**
24 * Run the page.
25 *
26 * This method is called after the page is created.
f7ad2038 27 *
28 * @throws \CRM_Core_Exception
6a488035 29 */
00be9182 30 public function run() {
6a488035 31 // get the emails for this contact
f7ad2038 32 $contactId = CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
6a488035 33
be2fb01f 34 $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id', ['labelColumn' => 'display_name']);
6a488035 35
be2fb01f 36 $entityBlock = ['contact_id' => $contactId];
6a488035
TO
37 $openids = CRM_Core_BAO_OpenID::getValues($entityBlock);
38 if (!empty($openids)) {
39 foreach ($openids as $key => & $value) {
40 $value['location_type'] = $locationTypes[$value['location_type_id']];
41 }
42 }
8ef12e64 43
6a488035
TO
44 $this->assign('contactId', $contactId);
45 $this->assign('openid', $openids);
46
47 // check logged in user permission
48 CRM_Contact_Page_View::checkUserPermission($this, $contactId);
8ef12e64 49
50 // finally call parent
6a488035
TO
51 parent::run();
52 }
96025800 53
6a488035 54}