Merge pull request #17079 from yashodha/dev-1704
[civicrm-core.git] / CRM / Mailing / Page / Unsubscribe.php
CommitLineData
1321c37b
SR
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
1321c37b 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 |
1321c37b 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
1321c37b
SR
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
1321c37b
SR
16 */
17class CRM_Mailing_Page_Unsubscribe extends CRM_Mailing_Page_Common {
18
ced9bfed
EM
19 /**
20 * Run page.
21 *
22 * This includes assigning smarty variables and other page processing.
23 *
24 * @return string
25 * @throws Exception
26 */
00be9182 27 public function run() {
1321c37b
SR
28 $this->_type = 'unsubscribe';
29 return parent::run();
30 }
96025800 31
1321c37b 32}