| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-sitemap/Block/Adminhtml/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-sitemap/Block/Adminhtml/Sitemap.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sitemap\Block\Adminhtml;
/**
* Adminhtml catalog (google) sitemaps block
*
* @api
* @since 100.0.2
*/
class Sitemap extends \Magento\Backend\Block\Widget\Grid\Container
{
/**
* Block constructor
*
* @return void
*/
protected function _construct()
{
$this->_controller = 'adminhtml_sitemap';
$this->_blockGroup = 'Magento_Sitemap';
$this->_headerText = __('XML Sitemap');
$this->_addButtonLabel = __('Add Sitemap');
parent::_construct();
}
}