2015-09-14 15:49:20 -04:00
|
|
|
<?php
|
2015-09-14 19:54:34 -04:00
|
|
|
/**
|
|
|
|
* Base class for routing to make namespaced config settings
|
|
|
|
* easier to work with
|
|
|
|
*/
|
2015-09-15 13:19:29 -04:00
|
|
|
namespace Aviat\AnimeClient;
|
2015-09-14 15:49:20 -04:00
|
|
|
|
2015-09-17 23:11:18 -04:00
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
|
|
|
|
2015-09-14 19:54:34 -04:00
|
|
|
/**
|
|
|
|
* Base for routing/url classes
|
|
|
|
*/
|
2015-09-14 15:49:20 -04:00
|
|
|
class RoutingBase {
|
|
|
|
/**
|
|
|
|
* Injection Container
|
|
|
|
* @var Container $container
|
|
|
|
*/
|
|
|
|
protected $container;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Config Object
|
|
|
|
* @var Config
|
|
|
|
*/
|
|
|
|
protected $config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Routing array
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $routes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2015-10-06 10:24:48 -04:00
|
|
|
* @param ContainerInterface $container
|
2015-09-14 15:49:20 -04:00
|
|
|
*/
|
2015-09-17 23:11:18 -04:00
|
|
|
public function __construct(ContainerInterface $container)
|
2015-09-14 15:49:20 -04:00
|
|
|
{
|
|
|
|
$this->container = $container;
|
|
|
|
$this->config = $container->get('config');
|
|
|
|
$this->routes = $this->config->__get('routes');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retreive the appropriate value for the routing key
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function __get($key)
|
|
|
|
{
|
|
|
|
$routing_config = $this->config->routing;
|
|
|
|
|
|
|
|
if (array_key_exists($key, $routing_config))
|
|
|
|
{
|
|
|
|
return $routing_config[$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// End of RoutingBase.php
|