integrate AuthComponent and implement CRUD for users

This commit is contained in:
coderkun 2014-01-22 16:31:25 +01:00
commit 4706fb5204
18 changed files with 509 additions and 16 deletions

View file

@ -14,6 +14,11 @@
<nav>
<?=$menu?>
</nav>
<?php if(!is_null($loggedUser)) : ?>
<div id="user">
<a href="<?=$linker->link(array('users',$loggedUser['url']))?>"><?=$loggedUser['username']?></a>
</div>
<?php endif ?>
</header>
<article>
<?=$intermediate?>