blob: 79689f01277db017382316e7a9a702be67a1364f [file] [log] [blame]
Greg Aker4abfa682010-11-10 14:44:26 -06001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002
Greg Aker63277b82010-11-09 13:46:13 -06003class Welcome extends CI_Controller {
Derek Allard2067d1a2008-11-13 22:59:24 +00004
Greg Aker4abfa682010-11-10 14:44:26 -06005 function __construct()
Derek Allard2067d1a2008-11-13 22:59:24 +00006 {
Greg Aker4abfa682010-11-10 14:44:26 -06007 parent::__construct();
Derek Allard2067d1a2008-11-13 22:59:24 +00008 }
Barry Mienydd671972010-10-04 16:33:58 +02009
Derek Allard2067d1a2008-11-13 22:59:24 +000010 function index()
11 {
12 $this->load->view('welcome_message');
13 }
14}
15
16/* End of file welcome.php */
Derek Jonesf0b39942010-03-25 10:08:20 -050017/* Location: ./application/controllers/welcome.php */