Adding the features ui adhoc

This commit is contained in:
Gustavo Cruz
2015-02-13 16:19:01 -04:00
parent 3a5057265f
commit 550e7bcc06
71 changed files with 8908 additions and 267 deletions

View File

@@ -0,0 +1,20 @@
<?php
/**
* Description of ExtensionManager
*
*/
class ExtensionManager
{
public function registerView($view, ExtensionContainer $container)
{
$view = $this->prepareView($view);
$container->register($view);
}
public function prepareView($view)
{
return $view;
}
}