mirror of
				https://gitlab.com/Chill-Projet/chill-bundles.git
				synced 2025-11-03 18:58:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use Symfony\Component\HttpKernel\Kernel;
 | 
						|
use Symfony\Component\Config\Loader\LoaderInterface;
 | 
						|
 | 
						|
class AppKernel extends Kernel
 | 
						|
{
 | 
						|
    public function registerBundles()
 | 
						|
    {
 | 
						|
        return array(
 | 
						|
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
 | 
						|
            new Chill\CustomFieldsBundle\ChillCustomFieldsBundle(),
 | 
						|
            new Symfony\Bundle\SecurityBundle\SecurityBundle(),
 | 
						|
            new Symfony\Bundle\TwigBundle\TwigBundle(),
 | 
						|
            new \Symfony\Bundle\AsseticBundle\AsseticBundle(),
 | 
						|
            new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
 | 
						|
            new Chill\PersonBundle\ChillPersonBundle(),
 | 
						|
            #add here all the required bundle (some bundle are not required)
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    public function registerContainerConfiguration(LoaderInterface $loader)
 | 
						|
    {
 | 
						|
        $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function getCacheDir()
 | 
						|
    {
 | 
						|
        return sys_get_temp_dir().'/PersonBundle/cache';
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function getLogDir()
 | 
						|
    {
 | 
						|
        return $this->getRootDir().'/../logs';
 | 
						|
    }
 | 
						|
}
 | 
						|
 |