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