00001 <?php
00002 require_once dirname(__FILE__) . '/iaction.cls.php';
00003 require_once dirname(__FILE__) . '/iserializable.cls.php';
00004
00005
00006
00007
00008
00009
00010
00011 interface ICommand extends IAction, ISerializable {
00012
00013
00014
00015 public function can_execute($user);
00016
00017
00018
00019
00020
00021
00022 public function execute();
00023
00024
00025
00026
00027 public function undo();
00028
00029
00030
00031
00032 public function get_success_message();
00033
00034
00035
00036
00037
00038
00039 public function get_result();
00040
00041
00042
00043
00044
00045
00046 public function get_name_serialized();
00047
00048
00049
00050
00051
00052
00053 public function get_params();
00054 }