mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-07 15:59:02 +00:00
20 lines
No EOL
354 B
PHP
20 lines
No EOL
354 B
PHP
<?php
|
|
class CSRAchievement extends AchAchievement implements CSR {
|
|
|
|
function CSRAchievement(&$data) {
|
|
parent::__construct($data);
|
|
}
|
|
|
|
function grant($pid) {
|
|
foreach($this->nodes as $elem) {
|
|
$elem->grant($pid);
|
|
}
|
|
}
|
|
|
|
function deny($pid) {
|
|
foreach($this->nodes as $elem) {
|
|
$elem->deny($pid);
|
|
}
|
|
}
|
|
}
|
|
?>
|