- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInit.php
More file actions
Latest commit
12 lines (11 loc) · 377 Bytes
/
Copy pathInit.php
File metadata and controls
12 lines (11 loc) · 377 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
<?php
require'vendor/autoload.php';
$app = new \atk4\ui\App('Money Lending App');
$layout = $app->initLayout('Admin');
$layout =$app->layout;
$layout->leftMenu->addItem(['Friends','icon'=>'code'], 'contact.php');
$layout->leftMenu->addItem(['Loan','icon'=>'code'], 'lend.php');
//DB
$db = new
\atk4\data\Persistence_SQL('mysql:dbname=money;host=localhost','mowok','1234');
?>