[feature/module_services] Add missing methods to module interface and base

This commit is contained in:
Marc Alexander
2013-11-10 13:19:38 +01:00
parent d63149f33b
commit 207076d637
2 changed files with 33 additions and 0 deletions

View File

@@ -54,6 +54,30 @@ class module_base implements module_interface
return $this->language;
}
/**
* @inheritdoc
*/
public function get_template_side($module_id)
{
return;
}
/**
* @inheritdoc
*/
public function get_template_center($module_id)
{
return;
}
/**
* @inheritdoc
*/
public function get_template_acp($module_id)
{
return false;
}
/**
* @inheritdoc
*/