# shiftcontroller/4.9.95/hc3/ui/element/h.php

ShiftController Employee Shift Scheduling, version 4.9.95. 12 lines.

- Page: https://pluginprobe.com/plugins/shiftcontroller/4.9.95/code/hc3/ui/element/h.php
- Raw: https://pluginprobe.com/plugins/shiftcontroller/4.9.95/raw/hc3/ui/element/h.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.95/code/hc3/ui/element/h.php#L10-L20`.

```php
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly
class HC3_Ui_Element_H extends HC3_Ui_Abstract_Element
{
	public function __construct( $level, $content )
	{
		if( $level > 4 OR $level < 0 ){
			$level = 1;
		}
		$el = 'h' . $level;
		parent::__construct( $el, $content );
	}
}
```
