2017-06-08 12:23:50 +02:00

18 lines
340 B
PHP

<?php
class AntadisConfiguratorGetContentController
{
public function __construct($module, $file, $path)
{
$this->file = $file;
$this->module = $module;
$this->context = Context::getContext(); $this->_path = $path;
}
public function run()
{
$html = $this->module->display($this->file, 'getContent.tpl');
return $html;
}
}