blob: 57a0f52436f27db6f609b2ecf9bbe5dec8bbdce2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | <?php
namespace FlatFileForms;
class PreLoader
{
  public function __construct()
  {
    global $utilities;
    $utilities = new Utilities();
    global $hooks;
    $hooks = new HookManager();
  }
}
 |