khanat-opennel-code/code/web/app/app_achievements/class/InDev_trait.php
SirCotare c888a5249e #1470 some cleanup; some bugfix; some documentation
--HG--
branch : gsoc2012-achievements
2012-08-20 15:52:35 +02:00

33 lines
No EOL
541 B
PHP

<?php
trait InDev {
/*---------------------------
This trait provides basic functionality used to
handle "in development" flags.
---------------------------*/
protected $dev;
final function inDev() {
return ($this->dev == 1);
}
final function getDev() {
return $this->dev;
}
final function setInDev($tf) {
if($tf == true) {
$this->setDev(1);
}
else {
$this->setDev(0);
}
$this->update();
}
final function setDev($d) {
$this->dev = $d;
}
}
?>