renderFeedbackMessages(); ?>
What happens here ?
This controller/action/view shows a list of all users in the system. You could use the underlying code to
build things that use profile information of one or multiple/all users.
| Id |
Avatar |
Username |
User's email |
Activated ? |
Link to user's profile |
users as $user) { ?>
| = $user->user_id; ?> |
user_avatar_link)) { ?>
|
= $user->user_name; ?> |
= $user->user_email; ?> |
= ($user->user_active == 0 ? 'No' : 'Yes'); ?> |
Profile
user_id);
if ($unread_count > 0) {
echo ' ' . $unread_count . '';
}
}
?>
|