18 lines
340 B
PHP
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;
|
|
}
|
|
}
|