first implementation of timeline

refs #224

Some parts have evolved from issue, we should rethink some parts of the design
This commit is contained in:
2015-02-11 00:37:05 +01:00
parent 3f4132e23d
commit 799893316d
6 changed files with 284 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Chill\MainBundle\DependencyInjection\SearchableServicesCompilerPass;
use Chill\MainBundle\DependencyInjection\ConfigConsistencyCompilerPass;
use Chill\MainBundle\DependencyInjection\TimelineCompilerClass;
class ChillMainBundle extends Bundle
{
@@ -14,5 +15,6 @@ class ChillMainBundle extends Bundle
parent::build($container);
$container->addCompilerPass(new SearchableServicesCompilerPass());
$container->addCompilerPass(new ConfigConsistencyCompilerPass());
$container->addCompilerPass(new TimelineCompilerClass());
}
}