khanat-opennel-code/code/web/app/app_achievements_admin/class/RyzomAdmin_class.php
2014-03-23 15:16:20 +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;
}
}
?>