Example #1
0
 function adminMenu()
 {
     $admin = new Admin_Model();
     $toView = $admin->adminMenu();
     $this->view->assign('toView', $toView);
     $content_view = $this->view->fetch($toView["view"], array('msgerror' => ' '));
     $this->view->assign('content', $content_view);
     $this->view->display(LAYOUT);
 }
Example #2
0
	<form method="post" action='<?php 
echo TMVC_BASEURL;
?>
/admin/volver_menu'>
		<button id="return" class="btn-primary btn-fire returnbutton" name="Return">Return to main menu</button>
	</form>
</div>
<div class="row">
	<div class="col-md-12">
		<div id="tabla">
			<table>
			<tr> <td>ID</td> <td>Username</td> <td>Enable/Disable</td> <td> Delete </td> </tr>
			<?php 
if (!isset($toView['users'])) {
    $admin = new Admin_Model();
    $toView = $admin->adminMenu();
}
foreach ($toView['users'] as $user) {
    if (intval($user['enabled']) == 0) {
        $enabledText = "Enable";
    } else {
        $enabledText = "Disable";
    }
    $button = '<button id="b' . $user['id'] . '" class="' . $enabledText . '">' . $enabledText . '</button>';
    $delButton = '<button id="bd' . $user['id'] . '" class="Delete">Delete</button>';
    echo '<tr id="r' . $user['id'] . '">';
    echo '<td>' . $user['id'] . '</td><td>' . htmlspecialchars($user['user'], ENT_QUOTES, 'UTF-8') . '</td><td>' . $button . '</td> <td>' . $delButton . '</td>';
    echo '</tr>';
}
?>
			</table>