This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
phptsmadmin/includes/kohana/system/tests/test_data/callback_routes.php

78 lines
1.3 KiB
PHP
Raw Normal View History

2011-05-16 12:47:16 +00:00
<?php
/**
* A holding class for route callback tests
*
* @group kohana
*
* @package Unittest
* @author Kohana Team
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
class Route_Holder
{
/**
* Just an empty callback that doesn't match anything
*/
public static function default_callback($uri)
{
}
/**
* Just an empty callback that matches everything
*
* @return array
*/
public static function default_return_callback($uri)
{
return array(
);
}
/**
* Route callback for test_matches_returns_array_of_parameters_on_successful_match
*
* @return array
*/
public static function matches_returns_array_of_parameters_on_successful_match($uri)
{
return array(
'controller' => 'welcome',
'action' => 'index',
);
}
/**
* Route callback for test_required_parameters_are_needed
*
* @return array
*/
public static function required_parameters_are_needed($uri)
{
if (substr($uri, 0, 5) == 'admin')
{
return array(
'controller' => 'foo',
'action' => 'bar',
);
}
}
/**
* Route callback for test reverse_routing_returns_routes_uri_if_route_is_static
*
* @return array
*/
public static function reverse_routing_returns_routes_uri_if_route_is_static($uri)
{
if ($uri == 'info/about_us')
{
return array(
);
}
}
}