Sign in

colleague / study-project · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
190dcfab758c0ec209979514234b7aa495bc0696
  • study-project
  • trunk
  • Exam
  • Apicp
  • Controller
  • Topic
  • AddController.class.php
  • init
    d12db008
    马雄飞 authored
    7 years ago  
    Browse Code »
AddController.class.php 442 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?php
/**
 * 【考试中心-后台】 添加题库题目
 * @author: houyingcai
 * @email: 594609175@qq.com
 * @date : 2017-05-23 16:24:51
 */

namespace Apicp\Controller\Topic;

class AddController extends AbstractController
{

    public function Index_post()
    {
        // 添加题库题目
        if (!$this->topic_service->add_topic($this->_result, I('post.'))) {

            return false;
        }

        return true;
    }
}