mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-07 15:59:02 +00:00
7d976a22ad
--HG-- branch : gsoc2012-achievements
15 lines
No EOL
215 B
PHP
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;
|
|
}
|
|
}
|
|
?>
|