khanat-opennel-code/code/web/public_php/app/app_achievements_admin/class/RyzomAdmin_class.php
shubham_meena c4ce26501c Merged in Gsoc14-ryzomAppImprovements (pull request #1)
Merging Gsoc 14 branch with default
2014-08-15 01:05:39 +05:30

15 lines
No EOL
215 B
PHP

<?php
class RyzomAdmin extends RyzomUser {
function RyzomAdmin($data) {
parent::__construct($data);
}
function isAdmin() {
return true;
}
function isCSR() {
return true;
}
}
?>