# shiftcontroller/4.9.69/hc3/encrypt.php

ShiftController Employee Shift Scheduling, version 4.9.69. 13 lines.

- Page: https://pluginprobe.com/plugins/shiftcontroller/4.9.69/code/hc3/encrypt.php
- Raw: https://pluginprobe.com/plugins/shiftcontroller/4.9.69/raw/hc3/encrypt.php
- Modified: 2018-04-02T15:13: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/4.9.69/code/hc3/encrypt.php#L10-L20`.

```php
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly
class HC3_Encrypt
{
	public function decode( $thing )
	{
		return $thing;
	}

	public function encode( $thing )
	{
		return $thing;
	}
}
```
