controller.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php namespace Laravel; use Laravel\Routing\Destination;
  2. abstract class Controller implements Destination {
  3. /**
  4. * The "before" filters defined for the controller.
  5. *
  6. * @var array
  7. */
  8. public $before = array();
  9. /**
  10. * The "after" filters defined for the controller.
  11. *
  12. * @var array
  13. */
  14. public $after = array();
  15. /**
  16. * Get an array of filter names defined for the destination.
  17. *
  18. * @param string $name
  19. * @return array
  20. */
  21. public function filters($name)
  22. {
  23. return $this->$name;
  24. }
  25. /**
  26. * Magic Method to handle calls to undefined functions on the controller.
  27. *
  28. * By default, the 404 response will be returned for an calls to undefined
  29. * methods on the controller. However, this method may also be overridden
  30. * and used as a pseudo-router by the controller.
  31. */
  32. public function __call($method, $parameters)
  33. {
  34. return Response::error('404');
  35. }
  36. /**
  37. * Dynamically resolve items from the application IoC container.
  38. *
  39. * First, "laravel." will be prefixed to the requested item to see if there is
  40. * a matching Laravel core class in the IoC container. If there is not, we will
  41. * check for the item in the container using the name as-is.
  42. */
  43. public function __get($key)
  44. {
  45. if (IoC::container()->registered("laravel.{$key}"))
  46. {
  47. return IoC::container()->core($key);
  48. }
  49. elseif (IoC::container()->registered($key))
  50. {
  51. return IoC::container()->resolve($key);
  52. }
  53. throw new \Exception("Attempting to access undefined property [$key] on controller.");
  54. }
  55. }