khanat-opennel-code/code/web/app/app_achievements_admin/class/CSRAtom_class.php

23 lines
496 B
PHP
Raw Normal View History

<?php
class CSRAtom implements CSR {
2012-07-02 16:56:13 +00:00
use Node;
2012-07-02 16:56:13 +00:00
function CSRAtom($data,$parent) {
$this->id = $data['atom_id'];
2012-07-02 16:56:13 +00:00
$this->parent = $parent;
}
function grant($pid) {
$this->clear_all($pid); #empty database
}
function deny($pid) {
$this->clear_all($pid); #empty database
}
private function clear_all($pid) {
global $DBc;
$DBc->sqlQuery("DELETE FROM ach_player_atom WHERE apa_atom='".$this->getID()."' AND apa_player='".$pid."'");
}
}
?>