# shiftcontroller/4.9.66/sh4/upgrade3/boot.php

ShiftController Employee Shift Scheduling, version 4.9.66. 17 lines.

- Page: https://pluginprobe.com/plugins/shiftcontroller/4.9.66/code/sh4/upgrade3/boot.php
- Raw: https://pluginprobe.com/plugins/shiftcontroller/4.9.66/raw/sh4/upgrade3/boot.php
- Modified: 2022-04-05T08:55:54+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/4.9.66/code/sh4/upgrade3/boot.php#L10-L20`.

```php
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly
class SH4_Upgrade3_Boot
{
	public function __construct(
		HC3_Hooks $hooks,
		HC3_Router $router
	)
	{
		$router
			->register( 'get:upgrade3', array('SH4_Upgrade3_Controller', 'get') )
			->register( 'get:upgrade3-1', array('SH4_Upgrade3_Controller', 'get1') )
			->register( 'get:upgrade3-2', array('SH4_Upgrade3_Controller', 'get2') )
			->register( 'get:upgrade3-3', array('SH4_Upgrade3_Controller', 'get3') )
			->register( 'get:upgrade3-4', array('SH4_Upgrade3_Controller', 'get4') )
			;
	}
}
```
