CodeIgniter Forums
Help About Modul Separation - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Help About Modul Separation (/showthread.php?tid=32209)



Help About Modul Separation - El Forum - 07-15-2010

[eluser]dezafu[/eluser]
Hi.,, can you help me i newbie using modular separator.,,

some case., i make some module call welcome

modules/welcome/config
modules/welcome/controllers
modules/welcome/views
modules/welcome/helper

i making some helper call try_helper.php with some function call
Code:
function hello_world() { echo "Hello Wordl"; }

and the i making some routes.php
Code:
$route['testpage'] = 'welcome';

what i want to ask..,,
why the route in welcome module cannot use?

how to call helper in welcome module at another module ?