diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-14 15:03:00 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-14 15:03:00 -0400 |
commit | 1c5d1c45864b86a178e10886e50c99132b4821c4 (patch) | |
tree | 006f2af894b307437561408b7579abf0cc1aceee /action.php | |
parent | 8842f3c29af6192273ca3337271a2ea360f19683 (diff) |
move library files to lib
darcs-hash:20080514190300-84dde-626b88c9da510c8830d2eff2d36b72f18e6353d4.gz
Diffstat (limited to 'action.php')
-rw-r--r-- | action.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/action.php b/action.php deleted file mode 100644 index ed25ac9d8..000000000 --- a/action.php +++ /dev/null @@ -1,23 +0,0 @@ -<?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); - } -} |