1
0
mirror of synced 2024-11-22 13:06:07 +03:00
magento-module/Block/Display.php
Alex Lushpai f4000c9874 v2.0
2017-05-31 15:24:46 +03:00

17 lines
317 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');
}
}