コード例 #1
0
ファイル: undelete.php プロジェクト: tomzx/wikimedia-apibot
 protected function process_data(&$signal)
 {
     $result = parent::process_data($signal);
     $params = $this->get_task_params();
     $params['title'] = $signal->data_title($this->default_data_key);
     if (is_null($params['title'])) {
         return false;
     }
     require_once dirname(__FILE__) . '/../../../../core/tasks//undelete.php';
     $task = new Task_Undelete($this->core);
     $result = $task->go($params);
     $this->set_jobdata($result, array('title' => $params['title']));
     return $result;
 }
コード例 #2
0
ファイル: bridge.php プロジェクト: tomzx/wikimedia-apibot
 public function undelete($title, $reason, $timestamps = NULL)
 {
     $params = array('title' => $title, 'reason' => $reason, 'timestamps' => $timestamps);
     require_once dirname(__FILE__) . '/../../core/tasks/undelete.php';
     $task = new Task_Undelete($this->core);
     return $task->go($params);
 }