public function actionAddBook()
 {
     $customer_id = $this->getParam('customer_id');
     $title = $this->getParam('title');
     $content = $this->getParam('content');
     $book = new HiBook();
     $book['title'] = $title;
     $book['content'] = $content;
     $book['customer_id'] = $customer_id;
     $book['insert_time'] = date('Y-m-d H:i:s', time());
     $book->insert();
     EchoUtility::echoMsgTF(true, '添加段子', $book);
 }
 public function actionGetHomeData()
 {
     $result = array();
     $story_c = new CDbCriteria();
     $story_c->addCondition('follow_count != 0');
     $story_c->order = 'follow_count DESC';
     $stories = Converter::convertModelToArray(HiStory::model()->with('customer')->findAll($story_c));
     $result['story'] = $stories[0];
     $article = Converter::convertModelToArray(HiPushArticle::model()->findByPk(Yii::app()->time_service->getIndex()));
     $result['article'] = $article;
     $question = Converter::convertModelToArray(HiQuestion::model()->findByPk(2));
     $question['cover_image'] = 'http://77fkpo.com5.z0.glb.clouddn.com/603b2cffffeb7c5c950a4c9517e8ee9e.jpg';
     $result['question'] = $question;
     $book = Converter::convertModelToArray(HiBook::model()->with('customer')->findByPk(1));
     $result['book'] = $book;
     EchoUtility::echoMsgTF(true, '获取首页数据', $result);
 }