HtmlEmailFooterView.php
6 years ago
HtmlReportEmailHeaderView.php
6 years ago
OneClickDone.php
6 years ago
RenderTokenParser.php
6 years ago
UIControl.php
6 years ago
ViewInterface.php
6 years ago
HtmlEmailFooterView.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Piwik - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | * |
| 8 | */ |
| 9 | |
| 10 | namespace Piwik\View; |
| 11 | |
| 12 | |
| 13 | use Piwik\View; |
| 14 | |
| 15 | class HtmlEmailFooterView extends View |
| 16 | { |
| 17 | const TEMPLATE_FILE = '@CoreHome/ReportRenderer/_htmlReportFooter'; |
| 18 | |
| 19 | public function __construct($unsubscribeLink = null) |
| 20 | { |
| 21 | parent::__construct(self::TEMPLATE_FILE); |
| 22 | |
| 23 | HtmlReportEmailHeaderView::assignCommonParameters($this); |
| 24 | |
| 25 | $this->unsubscribeLink = $unsubscribeLink; |
| 26 | } |
| 27 | } |