this example is to show links to only administrator
In action
if($this->getUser()->hasCredential('Administrator')) { $this->show = true; } else { $this->show =false; }
In View
if($show) { // show links } else { /dont show links }
Learn to Develop an iPhone or iPad App in 4 Weeks Learn the latest and greatest markup language in the market with Robin Nixon(HTML & HTML5) Now $29 Only(75% Off)
this example is to show
Mon, 12/01/2008 - 20:23 — adminthis example is to show links to only administrator
In action
if($this->getUser()->hasCredential('Administrator')) {
$this->show = true;
} else {
$this->show =false;
}
In View
if($show) {
// show links
} else
{
/dont show links
}