Welcome Guest, Not a member yet? Register   Sign In
Controller Method file extensions? (.xml or .php)
#2

[eluser]slowgary[/eluser]
You could use the _remap() method and break the URI up yourself. Something like this:
Code:
function _remap($method)
{
     switch(stristr($method, '?', true))  //check everything before the '?' char
     {
          case 'categories.xml':   xml(stristr($method, '?'));  //pass everything after the '?' char
                                   break;
          case 'categories.php':   php(stristr($method, '?'));  //pass everything after the '?' char
                                   break;
          case 'categories.json':  json(stristr($method, '?'));  //pass everything after the '?' char
                                   break;
     }
}

I haven't tested that so pardon me if you try it and it blows up the whole world. Also, this could be expensive, I'm not really sure.


Messages In This Thread
Controller Method file extensions? (.xml or .php) - by El Forum - 04-23-2009, 10:35 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-23-2009, 09:35 PM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 01:08 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 06:57 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 07:21 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 07:30 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 07:55 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 08:26 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 08:30 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 08:48 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 08:52 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 08:56 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 09:12 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 09:14 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 09:15 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 09:22 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 10:40 AM



Theme © iAndrew 2016 - Forum software by © MyBB