# shiftcontroller/2.1.0/happ/application/core/Front_controller.php

ShiftController Employee Shift Scheduling, version 2.1.0. 14 lines.

- Page: https://pluginprobe.com/plugins/shiftcontroller/2.1.0/code/happ/application/core/Front_controller.php
- Raw: https://pluginprobe.com/plugins/shiftcontroller/2.1.0/raw/happ/application/core/Front_controller.php
- Modified: 2013-11-19T19:08:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shiftcontroller/2.1.0/code/happ/application/core/Front_controller.php#L10-L20`.

```php
<?php
class Front_controller extends MY_Controller 
{
	function __construct()
	{
		parent::__construct();
		$this->load->library('migration');
		if ( ! $this->migration->current()){
			show_error($this->migration->error_string());
			return false;
			}
		$this->load->library( 'conf/app_conf' );
	}
}
```
