Welcome Guest, Not a member yet? Register   Sign In
Controller Names with Dashes or Underscores?
#15

[eluser]e-mike[/eluser]
Code:
<?php
class MY_Router extends CI_Router
{
    function _set_request($segments = array()) {
        parent::_set_request(str_replace('-', '_', $segments));
    }
}
?>

Put this file MY_Router.php inside /application/libraries (CI1) or /application/core (CI2)
Remember that this will effect all segments, not only module, controller and method.

Alternative to this extend is to add each segment to router.php
$route['this-is-a-module-or-controler'] = 'this_is_a_module_or_controller';

As you can see the extend method would be easier to use. You can choose to make the function also to handle only the first two or three segments so that the other segments are not affected with the _ replacement.


Messages In This Thread
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 09:34 AM
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 09:42 AM
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 10:13 AM
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 10:48 AM
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 10:56 AM
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 11:03 AM
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 11:11 AM
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 11:13 AM
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 11:32 AM
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 11:37 AM
Controller Names with Dashes or Underscores? - by El Forum - 05-16-2009, 11:38 AM
Controller Names with Dashes or Underscores? - by El Forum - 01-15-2010, 05:35 AM
Controller Names with Dashes or Underscores? - by El Forum - 03-13-2010, 06:00 PM
Controller Names with Dashes or Underscores? - by El Forum - 03-16-2010, 12:31 AM
Controller Names with Dashes or Underscores? - by El Forum - 06-18-2010, 07:24 AM
Controller Names with Dashes or Underscores? - by El Forum - 08-08-2011, 07:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB