123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Review\Helper;
- /**
- * Default review helper
- *
- * @api
- * @since 100.0.2
- */
- class Data extends \Magento\Framework\App\Helper\AbstractHelper
- {
- const XML_REVIEW_GUETS_ALLOW = 'catalog/review/allow_guest';
- /**
- * Filter manager
- *
- * @var \Magento\Framework\Filter\FilterManager
- */
- protected $filter;
- /**
- * Escaper
- *
- * @var \Magento\Framework\Escaper
- */
- protected $_escaper;
- /**
- * @param \Magento\Framework\App\Helper\Context $context
- * @param \Magento\Framework\Escaper $escaper
- * @param \Magento\Framework\Filter\FilterManager $filter
- */
- public function __construct(
- \Magento\Framework\App\Helper\Context $context,
- \Magento\Framework\Escaper $escaper,
- \Magento\Framework\Filter\FilterManager $filter
- ) {
- $this->_escaper = $escaper;
- $this->filter = $filter;
- parent::__construct($context);
- }
- /**
- * Get review detail
- *
- * @param string $origDetail
- * @return string
- */
- public function getDetail($origDetail)
- {
- return nl2br($this->filter->truncate($origDetail, ['length' => 50]));
- }
- /**
- * Return short detail info in HTML
- *
- * @param string $origDetail Full detail info
- * @return string
- */
- public function getDetailHtml($origDetail)
- {
- return nl2br($this->filter->truncate($this->_escaper->escapeHtml($origDetail), ['length' => 50]));
- }
- /**
- * Return an indicator of whether or not guest is allowed to write
- *
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- */
- public function getIsGuestAllowToWrite()
- {
- return $this->scopeConfig->isSetFlag(
- self::XML_REVIEW_GUETS_ALLOW,
- \Magento\Store\Model\ScopeInterface::SCOPE_STORE
- );
- }
- /**
- * Get review statuses with their codes
- *
- * @return array
- */
- public function getReviewStatuses()
- {
- return [
- \Magento\Review\Model\Review::STATUS_APPROVED => __('Approved'),
- \Magento\Review\Model\Review::STATUS_PENDING => __('Pending'),
- \Magento\Review\Model\Review::STATUS_NOT_APPROVED => __('Not Approved')
- ];
- }
- /**
- * Get review statuses as option array
- *
- * @return array
- */
- public function getReviewStatusesOptionArray()
- {
- $result = [];
- foreach ($this->getReviewStatuses() as $value => $label) {
- $result[] = ['value' => $value, 'label' => $label];
- }
- return $result;
- }
- }
|