# shiftcontroller/2.1.0/happ/application/controllers/test.php

ShiftController Employee Shift Scheduling, version 2.1.0. 34 lines.

- Page: https://pluginprobe.com/plugins/shiftcontroller/2.1.0/code/happ/application/controllers/test.php
- Raw: https://pluginprobe.com/plugins/shiftcontroller/2.1.0/raw/happ/application/controllers/test.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/controllers/test.php#L10-L20`.

```php
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class Test_controller extends CI_controller
{
	function __construct()
	{
		parent::__construct();
	}

	function index()
	{
		ci_redirect('');
		return;

		$target1 = ci_site_url('load');
		$html  =<<<EOT
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title></title>
</head>
<body>
<script type="text/javascript" src="$target1"></script>
</body>
</html>

EOT;
		echo $html;
	}
}

/* End of file customers.php */
/* Location: ./application/controllers/admin/categories.php */
```
