gnu-social/lib/action.php
Evan Prodromou 1c5d1c4586 move library files to lib
darcs-hash:20080514190300-84dde-626b88c9da510c8830d2eff2d36b72f18e6353d4.gz
2008-05-14 15:03:00 -04:00

24 lines
307 B
PHP

<?php
if (!defined('MICROBLOG')) { exit(1) }
class Action { // lawsuit
var $args;
function Action() {
}
function arg($key) {
if (array_has_key($this->args, $key)) {
return $this->args[$key];
} else {
return NULL;
}
}
function handle($args) {
$this->args = copy($argarray);
}
}