Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/mageworx/module-seoxtemplates/Helper/Comment/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/mageworx/module-seoxtemplates/Helper/Comment/Category.php
<?php
/**
 * Copyright © MageWorx. All rights reserved.
 * See LICENSE.txt for license details.
 */
namespace MageWorx\SeoXTemplates\Helper\Comment;

use Magento\Framework\App\Helper\Context;
use MageWorx\SeoXTemplates\Model\Template\Category as CategoryTemplate;

class Category extends \Magento\Framework\App\Helper\AbstractHelper
{
    /**
     * @var Category\Source
     */
    protected $commentSource;

    /**
     * Category constructor.
     *
     * @param Category\Source $commentSource
     * @param Context $context
     */
    public function __construct(
        \MageWorx\SeoXTemplates\Helper\Comment\Category\Source $commentSource,
        Context $context
    ) {
        parent::__construct($context);
        $this->commentSource = $commentSource;
    }

    /**
     * @param CategoryTemplate $type
     * Return comments for category template
     *
     * @return string
     * @throws \UnexpectedValueException
     */
    public function getComments($type)
    {
        $comment = '<br><small>' . $this->commentSource->getStaticVariableHeader();
        switch ($type) {
            case CategoryTemplate::TYPE_CATEGORY_META_TITLE:
            case CategoryTemplate::TYPE_CATEGORY_META_DESCRIPTION:
            case CategoryTemplate::TYPE_CATEGORY_DESCRIPTION:
            case CategoryTemplate::TYPE_CATEGORY_SEO_NAME:
            case CategoryTemplate::TYPE_CATEGORY_META_KEYWORDS:
                $comment .= '<br><p>' . $this->commentSource->getCategoryComment();
                $comment .= '<br><p>' . $this->commentSource->getCategoriesComment();
                $comment .= '<br><p>' . $this->commentSource->getParentCategoryComment();
                $comment .= '<br><p>' . $this->commentSource->getParentCategoryByLevelComment();
                $comment .= '<br><p>' . $this->commentSource->getWebsiteNameComment();
                $comment .= '<br><p>' . $this->commentSource->getStoreNameComment();
                $comment .= '<br><p>' . $this->commentSource->getStoreViewNameComment();
                $comment .= '<br><p>' . $this->commentSource->getDynamicVariableHeader();
                $comment .= '<br><p>' . $this->commentSource->getLnAllFiltersComment();
                $comment .= '<br><p>' . $this->commentSource->getLnPersonalFiltersComment();
                $comment .= '<br><p>' . $this->commentSource->getRandomizeComment();
                break;
            default:
                throw new \UnexpectedValueException(__('SEO XTemplates: Unknow Category Template Type'));
        }
        return $comment.'</small>';
    }

    /**
     * Return Static Variable header
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getStaticVariableHeader()
    {
        return $this->commentSource->getStaticVariableHeader();
    }

    /**
     * Return Dynamic Variable header
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getDynamicVariableHeader()
    {
        return $this->commentSource->getDynamicVariableHeader();
    }

    /**
     * Return comment for Category
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getCategoryComment()
    {
        return $this->commentSource->getCategoriesComment();
    }

    /**
     * Return comment for Categories
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getCategoriesComment()
    {
        return $this->commentSource->getCategoriesComment();
    }

    /**
     * Return comment for Parent Category
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getParentCategoryComment()
    {
        return $this->commentSource->getParentCategoryComment();
    }

    /**
     * Return comment for Parent Category by level
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getParentCategoryByLevelComment()
    {
        return $this->commentSource->getParentCategoryByLevelComment();
    }

    /**
     * Return comment for Subcategories
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getSubcategoriesComment()
    {
        return $this->commentSource->getSubcategoriesComment();
    }

    /**
     * Return comment for Website Name
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getWebsiteNameComment()
    {
        return $this->commentSource->getWebsiteNameComment();
    }

    /**
     * Return comment for Store Name
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getStoreNameComment()
    {
        return $this->commentSource->getStoreNameComment();
    }

    /**
     * Return comment for Store View Name
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getStoreViewNameComment()
    {
        return $this->commentSource->getStoreViewNameComment();
    }


    /**
     * Return comment for filter_all
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getLnAllFiltersComment()
    {
        return $this->commentSource->getLnAllFiltersComment();
    }

    /**
     * Return comment for personal filters
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getLnPersonalFiltersComment()
    {
        return $this->commentSource->getLnPersonalFiltersComment();
    }

    /**
     * Return comment for randomizer
     * @deprecated For backward compatibility with custom solutions
     * @return string
     */
    protected function getRandomizeComment()
    {
        return $this->commentSource->getRandomizeComment();
    }
}

Spamworldpro Mini