-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinit.php
More file actions
24 lines (20 loc) · 715 Bytes
/
Copy pathinit.php
File metadata and controls
24 lines (20 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
$tmpl = "includes/templates/";
$lang = "includes/lang/";
$func = 'includes/function/';
//when deploy the project note to replace it with cdn url
$bootstrap_css = "css/bootstrap.min.css";
$font_awesome_css = "css/all.min.css";
$css = "css/";
//when deploy the project note to replace it with cdn url
$bootstrap_js = "js/bootstrap.bundle.min.js";
//when deploy the project note to replace it with cdn url
$jQuery_js = "js/jquery-3.6.0.min.js";
$font_awesome_js = "js/pro.min.js";
$js = "js/";
require_once 'connect.php';
require_once $lang . 'ar.php';
require_once $func . 'function.php';
require_once $func . "component.php";
require_once $func . "queries.php";
require_once $func . "query_functions.php";