diff options
author | admin <devnull@localhost> | 2006-08-25 19:25:49 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-08-25 19:25:49 +0200 |
commit | b0dd10f8171945e0c1f3527dd1e9d18b043e01a7 (patch) | |
tree | c3583ba09e72217683c4304f4690df6ce39ba731 /system/application/controllers/welcome.php |
Initial Import
Diffstat (limited to 'system/application/controllers/welcome.php')
-rw-r--r-- | system/application/controllers/welcome.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/application/controllers/welcome.php b/system/application/controllers/welcome.php new file mode 100644 index 000000000..7f7296d81 --- /dev/null +++ b/system/application/controllers/welcome.php @@ -0,0 +1,15 @@ +<?php + +class Welcome extends Controller { + + function Welcome() + { + parent::Controller(); + } + + function index() + { + $this->load->view('welcome_message'); + } +} +?>
\ No newline at end of file |