| 1 |
<?php |
| 2 |
|
| 3 |
/* |
| 4 |
|-------------------------------------------------------------------------- |
| 5 |
| Autoload our application |
| 6 |
|-------------------------------------------------------------------------- |
| 7 |
| |
| 8 |
| Here we include our autoloader file that will deal with including all our |
| 9 |
| required class files. |
| 10 |
| |
| 11 |
*/ |
| 12 |
|
| 13 |
require_once dirname( __FILE__ ) . '/autoload.php'; |
| 14 |
|
| 15 |
|
| 16 |
/* |
| 17 |
|-------------------------------------------------------------------------- |
| 18 |
| Create The Application |
| 19 |
|-------------------------------------------------------------------------- |
| 20 |
| |
| 21 |
| The first real thing we will do is create a new Responsive Menu instance. |
| 22 |
| |
| 23 |
*/ |
| 24 |
|
| 25 |
$app = new ResponsiveMenu; |