1c5d1c4586
darcs-hash:20080514190300-84dde-626b88c9da510c8830d2eff2d36b72f18e6353d4.gz
24 lines
307 B
PHP
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);
|
|
}
|
|
}
|