This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpKernel/KernelInterface.php

176 lines
4.7 KiB
PHP
Raw Normal View History

2011-01-25 16:07:37 +00:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
2011-01-25 16:07:37 +00:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpKernel;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
use Symfony\Component\Config\Loader\LoaderInterface;
2011-01-25 16:07:37 +00:00
/**
* The Kernel is the heart of the Symfony system.
*
* It manages an environment made of bundles.
*
* @author Fabien Potencier <fabien@symfony.com>
2011-01-25 16:07:37 +00:00
*/
interface KernelInterface extends HttpKernelInterface, \Serializable
{
/**
* Returns an array of bundles to register.
2011-01-25 16:07:37 +00:00
*
* @return BundleInterface[] An array of bundle instances
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function registerBundles();
2011-01-25 16:07:37 +00:00
/**
* Loads the container configuration.
2011-01-25 16:07:37 +00:00
*
* @param LoaderInterface $loader A LoaderInterface instance
*/
2012-07-09 13:50:58 +01:00
public function registerContainerConfiguration(LoaderInterface $loader);
2011-01-25 16:07:37 +00:00
/**
* Boots the current kernel.
*/
2012-07-09 13:50:58 +01:00
public function boot();
2011-01-25 16:07:37 +00:00
/**
* Shutdowns the kernel.
*
* This method is mainly useful when doing functional testing.
*/
2012-07-09 13:50:58 +01:00
public function shutdown();
2011-01-25 16:07:37 +00:00
/**
* Gets the registered bundle instances.
*
* @return BundleInterface[] An array of registered bundle instances
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function getBundles();
2011-01-25 16:07:37 +00:00
/**
* Checks if a given class name belongs to an active bundle.
*
* @param string $class A class name
*
2014-11-30 13:33:44 +00:00
* @return bool true if the class belongs to an active bundle, false otherwise
2011-07-20 09:14:31 +01:00
*
2014-12-29 23:26:56 +00:00
* @deprecated since version 2.6, to be removed in 3.0.
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function isClassInActiveBundle($class);
2011-01-25 16:07:37 +00:00
/**
* Returns a bundle and optionally its descendants by its name.
2011-01-25 16:07:37 +00:00
*
2014-11-30 13:33:44 +00:00
* @param string $name Bundle name
* @param bool $first Whether to return the first bundle only or together with its descendants
2011-01-25 16:07:37 +00:00
*
* @return BundleInterface|BundleInterface[] A BundleInterface instance or an array of BundleInterface instances if $first is false
2011-01-25 16:07:37 +00:00
*
* @throws \InvalidArgumentException when the bundle is not enabled
*/
2012-07-09 13:50:58 +01:00
public function getBundle($name, $first = true);
2011-01-25 16:07:37 +00:00
/**
* Returns the file path for a given resource.
*
* A Resource can be a file or a directory.
*
* The resource name must follow the following pattern:
*
* "@BundleName/path/to/a/file.something"
2011-01-25 16:07:37 +00:00
*
* where BundleName is the name of the bundle
* and the remaining part is the relative path in the bundle.
*
* If $dir is passed, and the first segment of the path is "Resources",
2011-01-25 16:07:37 +00:00
* this method will look for a file named:
*
* $dir/<BundleName>/path/without/Resources
*
* before looking in the bundle resource folder.
2011-01-25 16:07:37 +00:00
*
2014-11-30 13:33:44 +00:00
* @param string $name A resource name to locate
* @param string $dir A directory where to look for the resource first
* @param bool $first Whether to return the first path or paths for all matching bundles
2011-01-25 16:07:37 +00:00
*
* @return string|array The absolute path of the resource or an array if $first is false
*
* @throws \InvalidArgumentException if the file cannot be found or the name is not valid
* @throws \RuntimeException if the name contains invalid/unsafe characters
*/
2012-07-09 13:50:58 +01:00
public function locateResource($name, $dir = null, $first = true);
2011-01-25 16:07:37 +00:00
/**
* Gets the name of the kernel.
*
* @return string The kernel name
*/
2012-07-09 13:50:58 +01:00
public function getName();
2011-01-25 16:07:37 +00:00
/**
* Gets the environment.
*
* @return string The current environment
*/
2012-07-09 13:50:58 +01:00
public function getEnvironment();
2011-01-25 16:07:37 +00:00
/**
* Checks if debug mode is enabled.
*
2014-11-30 13:33:44 +00:00
* @return bool true if debug mode is enabled, false otherwise
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function isDebug();
2011-01-25 16:07:37 +00:00
/**
* Gets the application root dir.
*
* @return string The application root dir
*/
2012-07-09 13:50:58 +01:00
public function getRootDir();
2011-01-25 16:07:37 +00:00
/**
* Gets the current container.
*
* @return ContainerInterface A ContainerInterface instance
*/
2012-07-09 13:50:58 +01:00
public function getContainer();
2011-01-25 16:07:37 +00:00
/**
* Gets the request start time (not available if debug is disabled).
*
2014-11-30 13:33:44 +00:00
* @return int The request start timestamp
2011-01-25 16:07:37 +00:00
*/
2012-07-09 13:50:58 +01:00
public function getStartTime();
2011-01-25 16:07:37 +00:00
/**
* Gets the cache directory.
*
* @return string The cache directory
*/
2012-07-09 13:50:58 +01:00
public function getCacheDir();
2011-01-25 16:07:37 +00:00
/**
* Gets the log directory.
*
* @return string The log directory
*/
2012-07-09 13:50:58 +01:00
public function getLogDir();
/**
* Gets the charset of the application.
*
* @return string The charset
*/
2012-07-09 13:50:58 +01:00
public function getCharset();
2011-01-25 16:07:37 +00:00
}