Browse Source

moved route filter to route directory.

Taylor Otwell 13 years ago
parent
commit
4f73200675
3 changed files with 5 additions and 5 deletions
  1. 2 2
      public/index.php
  2. 2 2
      system/route.php
  3. 1 1
      system/route/filter.php

+ 2 - 2
public/index.php

@@ -83,7 +83,7 @@ if (System\Config::get('session.driver') != '')
 // --------------------------------------------------------------
 // --------------------------------------------------------------
 // Execute the global "before" filter.
 // Execute the global "before" filter.
 // --------------------------------------------------------------
 // --------------------------------------------------------------
-$response = System\Filter::call('before', array(), true);
+$response = System\Route\Filter::call('before', array(), true);
 
 
 // --------------------------------------------------------------
 // --------------------------------------------------------------
 // Only execute the route function if the "before" filter did
 // Only execute the route function if the "before" filter did
@@ -116,7 +116,7 @@ else
 // ----------------------------------------------------------
 // ----------------------------------------------------------
 // Execute the global "after" filter.
 // Execute the global "after" filter.
 // ----------------------------------------------------------
 // ----------------------------------------------------------
-System\Filter::call('after', array($response));
+System\Route\Filter::call('after', array($response));
 
 
 // ----------------------------------------------------------
 // ----------------------------------------------------------
 // Stringify the response.
 // Stringify the response.

+ 2 - 2
system/route.php

@@ -63,7 +63,7 @@ class Route {
 		// ------------------------------------------------------------
 		// ------------------------------------------------------------
 		elseif (is_array($this->callback))
 		elseif (is_array($this->callback))
 		{
 		{
-			$response = isset($this->callback['before']) ? Filter::call($this->callback['before'], array(), true) : null;
+			$response = isset($this->callback['before']) ? Route\Filter::call($this->callback['before'], array(), true) : null;
 
 
 			// ------------------------------------------------------------
 			// ------------------------------------------------------------
 			// We verify that the before filters did not return a response
 			// We verify that the before filters did not return a response
@@ -80,7 +80,7 @@ class Route {
 
 
 		if (is_array($this->callback) and isset($this->callback['after']))
 		if (is_array($this->callback) and isset($this->callback['after']))
 		{
 		{
-			Filter::call($this->callback['after'], array($response));
+			Route\Filter::call($this->callback['after'], array($response));
 		}
 		}
 
 
 		return $response;
 		return $response;

+ 1 - 1
system/filter.php → system/route/filter.php

@@ -1,4 +1,4 @@
-<?php namespace System;
+<?php namespace System\Route;
 
 
 class Filter {
 class Filter {