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

17 lines
326 B
PHP
Raw Normal View History

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
}