2017-05-31 15:24:46 +03:00
|
|
|
<?php
|
2018-03-12 16:34:48 +03:00
|
|
|
|
2017-05-31 15:24:46 +03:00
|
|
|
namespace Retailcrm\Retailcrm\Block;
|
2018-03-12 16:34:48 +03:00
|
|
|
|
2017-05-31 15:24:46 +03:00
|
|
|
class Display extends \Magento\Framework\View\Element\Template
|
|
|
|
{
|
|
|
|
public function __construct(\Magento\Framework\View\Element\Template\Context $context)
|
|
|
|
{
|
2018-03-12 16:34:48 +03:00
|
|
|
parent::__construct($context);
|
|
|
|
}
|
2017-05-31 15:24:46 +03:00
|
|
|
|
|
|
|
public function sayHello()
|
2018-03-12 16:34:48 +03:00
|
|
|
{
|
|
|
|
return __('Hello World');
|
2017-05-31 15:24:46 +03:00
|
|
|
}
|
2018-03-12 16:34:48 +03:00
|
|
|
}
|