mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 10:37:42 -07:00
Separate scripts from html & New rendering function
This commit is contained in:
parent
656d34ed0b
commit
e16e92278b
84 changed files with 848 additions and 1280 deletions
|
@ -15,30 +15,20 @@ if($_REQUEST['ajax'] == 1){
|
|||
$data[$key] = $note;
|
||||
}
|
||||
echo json_encode($data);
|
||||
exit();
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
|
||||
$TAB = 'NOTIFICATIONS';
|
||||
// Header
|
||||
include($_SERVER['DOCUMENT_ROOT'].'/templates/header.html');
|
||||
|
||||
// Panel
|
||||
top_panel($user,$TAB);
|
||||
|
||||
// Data
|
||||
exec (VESTA_CMD."v-list-user-notifications $user json", $output, $return_var);
|
||||
$data = json_decode(implode('', $output), true);
|
||||
$data = array_reverse($data,true);
|
||||
if ($_SESSION['user'] == 'admin') {
|
||||
include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_notifications.html');
|
||||
} else {
|
||||
include($_SERVER['DOCUMENT_ROOT'].'/templates/user/list_notifications.html');
|
||||
}
|
||||
|
||||
// Render page
|
||||
render_page($url, $TAB, '*/list_notifications');
|
||||
|
||||
// Back uri
|
||||
$_SESSION['back'] = $_SERVER['REQUEST_URI'];
|
||||
|
||||
// Footer
|
||||
include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue