-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.php
More file actions
35 lines (32 loc) · 1.25 KB
/
init.php
File metadata and controls
35 lines (32 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
$header = 'includes/templates/header.php';
$nav = 'includes/templates/navbar.php';
$home = 'includes/templates/home.php';
$form = 'includes/templates/form.php';
$profile = 'includes/templates/profile.php';
$departments = 'includes/templates/departments.php';
$item = 'includes/templates/item.php';
$buy = 'includes/templates/buy.php';
$search = 'includes/templates/search.php';
$logout = 'includes/templates/logout.php';
$footer = 'includes/templates/footer.php';
$func = 'includes/functions/func.php';
$user = 'includes/objects/user.php';
$department = 'includes/objects/department.php';
$classSlider = 'includes/objects/slider.php';
$classItem = 'includes/objects/items.php';
$client = 'includes/objects/client.php';
$path = 'data/uploads/slider/';
$avaterPath = 'data/uploads/avaters/';
$itemPath = 'data/uploads/items/';
$deptPath = 'data/uploads/departments/';
include $user;
include $func;
include $header;
if (!isset($noNav)){
include $nav;
}
include $department;
include $classSlider;
include $classItem;
include $client;