Merge pull request #16035 from demeritcowboy/ang-crmcasetype-list-boolean
[civicrm-core.git] / CRM / Contact / Page / Inline / Website.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
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 |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * Dummy page for details of website.
20 */
21 class CRM_Contact_Page_Inline_Website extends CRM_Core_Page {
22
23 /**
24 * Run the page.
25 *
26 * This method is called after the page is created.
27 *
28 * @throws \CRM_Core_Exception
29 */
30 public function run() {
31 // get the emails for this contact
32 $contactId = CRM_Utils_Request::retrieveValue('cid', 'Positive');
33
34 $websiteTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id');
35
36 $params = ['contact_id' => $contactId];
37 $websites = CRM_Core_BAO_Website::getValues($params);
38 if (!empty($websites)) {
39 foreach ($websites as $key => & $value) {
40 $value['website_type'] = $websiteTypes[$value['website_type_id']];
41 }
42 }
43
44 $this->assign('contactId', $contactId);
45 $this->assign('website', $websites);
46
47 // check logged in user permission
48 CRM_Contact_Page_View::checkUserPermission($this, $contactId);
49
50 // finally call parent
51 parent::run();
52 }
53
54 }