123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © 2016 Ihor Vansach (ihor@magefan.com). All rights reserved.
- * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
- *
- * Glory to Ukraine! Glory to the heroes!
- */
- namespace Magefan\Blog\Plugin\Plumrocket\Amp;
- /**
- * Plugin for helper data (amp extension by Plumrocket)
- */
- class HelperDataPlugin
- {
- /**
- * Add magefan blog actions to allowed list
- * @param \Plumrocket\Amp\Helper\Data $helper
- * @param array $allowedPages
- * @return array
- */
- public function afterGetAllowedPages(\Plumrocket\Amp\Helper\Data $helper, $allowedPages)
- {
- foreach ($allowedPages as &$value) {
- if (strpos($value, 'magefan_blog_') === 0) {
- $value = str_replace('magefan_blog_', 'blog_', $value);
- }
- }
- return $allowedPages;
- }
- }
|