12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Frontend form key content block
- */
- namespace Magento\Cookie\Block\Html;
- /**
- * @api
- * @since 100.0.2
- */
- class Notices extends \Magento\Framework\View\Element\Template
- {
- /**
- * Get Link to cookie restriction privacy policy page
- *
- * @return string
- * @codeCoverageIgnore
- */
- public function getPrivacyPolicyLink()
- {
- return $this->_urlBuilder->getUrl('privacy-policy-cookie-restriction-mode');
- }
- }
|