Merge pull request #23046 from braders/pricefield-php-notices
[civicrm-core.git] / CRM / Contact / Page / View / Useradd.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 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
6a488035
TO
15 */
16
17/**
95cdcc0f 18 * Dummy page for details of Email.
6a488035
TO
19 */
20class CRM_Contact_Page_View_Useradd extends CRM_Core_Page {
21
22 /**
23 * Run the page.
24 *
25 * This method is called after the page is created.
6a488035 26 */
00be9182 27 public function run() {
6a488035
TO
28 $controller = new CRM_Core_Controller_Simple('CRM_Contact_Form_Task_Useradd',
29 ts('Add User'),
30 CRM_Core_Action::ADD
31 );
32 $controller->setEmbedded(TRUE);
33
34 $controller->process();
35 $controller->run();
36
37 return parent::run();
38 }
96025800 39
6a488035 40}