| 1 | 
joko | 
1.1 | 
<? | 
| 2 | 
  | 
  | 
// --------------------------------------------------------------------------- | 
| 3 | 
  | 
  | 
//  $Id: Config.php,v 1.4 2003/02/09 17:03:35 joko Exp $ | 
| 4 | 
  | 
  | 
// --------------------------------------------------------------------------- | 
| 5 | 
  | 
  | 
//  $Log: Config.php,v $ | 
| 6 | 
  | 
  | 
// --------------------------------------------------------------------------- | 
| 7 | 
  | 
  | 
 | 
| 8 | 
  | 
  | 
 | 
| 9 | 
  | 
  | 
class YAA_AdminBackend extends Application_AbstractBackend { | 
| 10 | 
  | 
  | 
 | 
| 11 | 
  | 
  | 
  // propagate passed arguments to constructor of base class | 
| 12 | 
  | 
  | 
  function constructor($rpcinfo) { | 
| 13 | 
  | 
  | 
    print "YAA_AdminBackend->constructor - dying here!<br/>"; | 
| 14 | 
  | 
  | 
    exit; | 
| 15 | 
  | 
  | 
    //$base_constructor = get_parent_class($this); | 
| 16 | 
  | 
  | 
    //parent::$base_constructor($rpcinfo); | 
| 17 | 
  | 
  | 
  } | 
| 18 | 
  | 
  | 
 | 
| 19 | 
  | 
  | 
  function getTaskList($arg1) { | 
| 20 | 
  | 
  | 
    return $this->_remote_method('getTaskList', $arg1); | 
| 21 | 
  | 
  | 
  } | 
| 22 | 
  | 
  | 
 | 
| 23 | 
  | 
  | 
  function getTaskInfo($arg1) { | 
| 24 | 
  | 
  | 
    return $this->_remote_method('getTaskInfo', $arg1); | 
| 25 | 
  | 
  | 
  } | 
| 26 | 
  | 
  | 
 | 
| 27 | 
  | 
  | 
  function runTask($arg1) { | 
| 28 | 
  | 
  | 
    return $this->_remote_method('runTask', $arg1); | 
| 29 | 
  | 
  | 
  } | 
| 30 | 
  | 
  | 
   | 
| 31 | 
  | 
  | 
} | 
| 32 | 
  | 
  | 
 | 
| 33 | 
  | 
  | 
?> |