コード例 #1
0
 /**
  * Deletes the executed events.
  */
 public function deleteEvents()
 {
     if (!empty($this->eventIDsStr)) {
         WOTEventEditor::deleteEvents($this->eventIDsStr);
     }
     $this->eventIDsStr = "";
     // integrate this in wcf eventlistener
     require_once LW_DIR . 'lib/data/planet/Planet.class.php';
     Planet::clean();
     require_once LW_DIR . 'lib/data/fleet/Fleet.class.php';
     Fleet::clean();
 }