Skip to content

Instantly share code, notes, and snippets.

@jokosusilo
Created May 3, 2014 00:13
Show Gist options
  • Save jokosusilo/70804e59b4156d8c0e16 to your computer and use it in GitHub Desktop.
Save jokosusilo/70804e59b4156d8c0e16 to your computer and use it in GitHub Desktop.
<?php
class WebUser extends CWebUser {
public function checkAccess($operation, $params = array()) {
if (empty($this->id)) {
return false;
}
$role = $this->getState("roles");
if ($role === 'admin') {
return true;
}
return ($operation === $role);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment