Merge pull request #23172 from eileenmcnaughton/import_most
[civicrm-core.git] / CRM / Mailing / Page / Resubscribe.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
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17class CRM_Mailing_Page_Resubscribe extends CRM_Mailing_Page_Common {
7e8c8317 18
e0ef6999
EM
19 /**
20 * @return string
21 */
00be9182 22 public function run() {
6a488035
TO
23 $this->_type = 'resubscribe';
24 return parent::run();
25 }
96025800 26
6a488035 27}