* @package entries * @version 1 * @link https://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, 'view', 'yes', $this->param('type', 'story')); $this->getData(); return $this->sendSuccess(200, 'success'); } }