/** * Load a Wiki * @param int wikiId ID of the Wiki * @return Wiki the loaded Wiki */ public function loadWiki($wikiId) { $wiki = new Wiki($this->con, $this->config); $wiki->load($wikiId); if ($wiki->hasError()) { $this->setError($wiki->error, $wiki->errno); } return $wiki; }
/** * Load a Wiki * @param int wikiId ID of the Wiki * @return Wiki the loaded Wiki */ function loadWiki($wikiId) { $wiki = new Wiki(); if ($wiki->hasError()) { $this->setError($wiki->error); } $wiki->load($wikiId); return $wiki; }