* @package entries * @version 1 * @link http://www.zentao.net */ class storyRecallEntry extends entry { /** * Delete method. * * @param int $storyID * @access public * @return string */ public function delete($storyID) { $control = $this->loadController('story', 'recall'); $control->recall($storyID); $this->getData(); return $this->sendSuccess(200, 'success'); } }