You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.2 KiB
67 lines
1.2 KiB
![]()
10 years ago
|
<?php
|
||
|
/* For licensing terms, see /license.txt */
|
||
|
|
||
|
/**
|
||
|
* Class AppKernel
|
||
|
*/
|
||
|
class AppKernel
|
||
|
{
|
||
|
protected $rootDir;
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getRootDir()
|
||
|
{
|
||
|
if (null === $this->rootDir) {
|
||
|
$r = new \ReflectionObject($this);
|
||
|
$this->rootDir = str_replace('\\', '/', dirname($r->getFileName()));
|
||
|
}
|
||
|
|
||
|
return $this->rootDir;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the real root path
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getRealRootDir()
|
||
|
{
|
||
|
return realpath($this->getRootDir().'/../').'/';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the data path
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getDataDir()
|
||
|
{
|
||
|
return $this->getRealRootDir().'data/';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getAppDir()
|
||
|
{
|
||
|
return $this->getRealRootDir().'app/';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getConfigDir()
|
||
|
{
|
||
|
return $this->getRealRootDir().'app/config/';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getConfigurationFile()
|
||
|
{
|
||
|
return $this->getRealRootDir().'app/config/configuration.php';
|
||
|
}
|
||
|
}
|
||
|
|