Esempio n. 1
0
 public function testReturnCorrectValueWhenNotInitiated()
 {
     $active = new Active(null);
     $this->assertFalse($active->checkAction([]));
     $this->assertFalse($active->checkRouteParam('', ''));
     $this->assertFalse($active->checkRoute([]));
     $this->assertFalse($active->checkRoutePattern([]));
     $this->assertFalse($active->checkUriPattern([]));
     $this->assertFalse($active->checkUri([]));
     $this->assertFalse($active->checkQuery('', ''));
     $this->assertFalse($active->checkController([]));
     $this->assertSame('', $active->getAction());
     $this->assertSame('', $active->getController());
     $this->assertSame('', $active->getMethod());
 }
Esempio n. 2
0
 /**
  * Check if the name of the current route matches one of specific values
  *
  * @param array $routeNames
  * @return bool 
  * @static 
  */
 public static function checkRoute($routeNames)
 {
     return \HieuLe\Active\Active::checkRoute($routeNames);
 }