25 lines
511 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\manystoreapi\controller\school;
use app\common\controller\ManystoreApiBase;
use app\common\model\school\activity\Activity;
/**
* 机构API后台活动管理接口
*/
class NewActivity extends ManystoreApiBase
{
protected $layout = '';
protected $model = null;
public function _initialize()
{
parent::_initialize();
//移除HTML标签
// $this->request->filter('trim,strip_tags,htmlspecialchars');
$this->model = new Activity;
}
}