31 lines
779 B
PHP
31 lines
779 B
PHP
<?php
|
|
/**
|
|
* The story recall entry point of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package entries
|
|
* @version 1
|
|
* @link http://www.zentao.net
|
|
*/
|
|
class storyRecallEntry extends Entry
|
|
{
|
|
/**
|
|
* Delete method.
|
|
*
|
|
* @param int $storyID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function delete($storyID)
|
|
{
|
|
$control = $this->loadController('story', 'recall');
|
|
$control->recall($storyID);
|
|
|
|
$this->getData();
|
|
$this->sendSuccess(200, 'success');
|
|
}
|
|
}
|
|
|