36 lines
838 B
PHP
36 lines
838 B
PHP
<?php
|
||
|
||
namespace app\api\controller\wxapp;
|
||
|
||
use app\api\controller\Controller;
|
||
use app\api\model\wxapp\Formid as FormidModel;
|
||
|
||
/**
|
||
* form_id 管理
|
||
* Class Formid
|
||
* @package app\api\controller\wxapp
|
||
*/
|
||
class Formid extends Controller
|
||
{
|
||
/**
|
||
* 新增form_id
|
||
* (因微信模板消息已下线,所以formId取消不再收集)
|
||
* @param $formId
|
||
* @return array
|
||
* @throws \app\common\exception\BaseException
|
||
* @throws \think\exception\DbException
|
||
*/
|
||
public function save($formId)
|
||
{
|
||
return $this->renderSuccess();
|
||
|
||
// if (!$user = $this->getUser(false)) {
|
||
// return $this->renderSuccess();
|
||
// }
|
||
// if (FormidModel::add($user['user_id'], $formId)) {
|
||
// return $this->renderSuccess();
|
||
// }
|
||
// return $this->renderError();
|
||
}
|
||
|
||
} |