| Current Path : /home/rtorresani/www/vendor/magento/module-catalog-rule/Block/Adminhtml/Edit/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog-rule/Block/Adminhtml/Edit/GenericButton.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\CatalogRule\Block\Adminhtml\Edit;
use Magento\CatalogRule\Controller\RegistryConstants;
class GenericButton
{
/**
* Url Builder
*
* @var \Magento\Framework\UrlInterface
*/
protected $urlBuilder;
/**
* Registry
*
* @var \Magento\Framework\Registry
*/
protected $registry;
/**
* Constructor
*
* @param \Magento\Backend\Block\Widget\Context $context
* @param \Magento\Framework\Registry $registry
*/
public function __construct(
\Magento\Backend\Block\Widget\Context $context,
\Magento\Framework\Registry $registry
) {
$this->urlBuilder = $context->getUrlBuilder();
$this->registry = $registry;
}
/**
* Return the current Catalog Rule Id.
*
* @return int|null
*/
public function getRuleId()
{
$catalogRule = $this->registry->registry(RegistryConstants::CURRENT_CATALOG_RULE_ID);
return $catalogRule ? $catalogRule->getId() : null;
}
/**
* Generate url by route and parameters
*
* @param string $route
* @param array $params
* @return string
*/
public function getUrl($route = '', $params = [])
{
return $this->urlBuilder->getUrl($route, $params);
}
/**
* Check where button can be rendered
*
* @param string $name
* @return string
*/
public function canRender($name)
{
return $name;
}
}