1
0
mirror of synced 2024-11-25 06:26:07 +03:00
magento-module/Block/Display.php
2018-03-12 16:34:48 +03:00

17 lines
326 B
PHP

<?php
namespace Retailcrm\Retailcrm\Block;
class Display extends \Magento\Framework\View\Element\Template
{
public function __construct(\Magento\Framework\View\Element\Template\Context $context)
{
parent::__construct($context);
}
public function sayHello()
{
return __('Hello World');
}
}