PHP File Manager
Editing File: Schedules.php
<?php /* * Copyright (C) Wayne Purton-Smith - All Rights Reserved * Unauthorized copying of this file or removing this paragraph, via any medium is strictly prohibited * Proprietary and confidential * Written by Wayne Purton-Smith <waynepurtonsmith@hotmail.co.uk> February 2014 */ class Schedules extends CI_Controller { public function index() { $head_data['page_title'] = 'Calendar'; $this->load->view('header', $head_data); $this->load->view('calendar/overview'); $this->load->view('footer'); } }
Cancel