This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
lilac/classes/LilacCoreModule.php

26 lines
348 B
PHP
Raw Normal View History

2011-08-18 16:54:38 +02:00
<?php
final class LilacCoreModule extends Module {
public function getModulesByHook($hook) {
return $this->createModulesByHook($hook);
}
public function renderForHook($hook) {
$mods = $this->getModulesByHook($hook);
foreach($mods as $mod) {
$mod->render();
}
}
public function render() {
}
public function init() {
}
}