12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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\Block\Amp\Og;
- use Magento\Store\Model\ScopeInterface;
- /**
- * Blog post opengraph for amp
- */
- if (class_exists('\Plumrocket\Amp\Block\Page\Head\Og\AbstractOg')) {
- class PostIntermediate extends \Plumrocket\Amp\Block\Page\Head\Og\AbstractOg {}
- } else {
- class PostIntermediate extends \Magento\Framework\View\Element\AbstractBlock {}
- }
- class Post extends PostIntermediate
- {
- /**
- * Retrieve open graph params
- *
- * @return array
- */
- public function getOgParams()
- {
- $params = parent::getOgParams();
- $post = $this->getPost();
- return array_merge($params, [
- 'type' => $post->getOgType() ?: 'article',
- 'url' => $this->_helper->getCanonicalUrl($post->getPostUrl()),
- 'image' => (string)$post->getImageUrl(),
- ]);
- }
- /**
- * Retrieve current post
- *
- * @return \Magefan\Blog\Model\Post
- */
- public function getPost()
- {
- return $this->_coreRegistry->registry('current_blog_post');
- }
- /**
- * Retrieve page main image
- *
- * @return string | null
- */
- public function getImage()
- {
- $image = $this->getPost()->getOgImage();
- if (!$image) {
- $image = $this->getPost()->getFirstImage();
- }
- if ($image) {
- return $this->stripTags($image);
- }
- }
- }
|