示例#1
0
文件: Admin.php 项目: AndreyLM/home2
 public function actionIndex()
 {
     $view = new ViewConstuctor();
     $view->titles = News::GetAll();
     $view->Display('Admin/Index');
 }
示例#2
0
文件: News.php 项目: AndreyLM/home2
 public function actionJson()
 {
     $mailer = new \PHPMailer();
     return json_encode(NewsModel::GetAll());
 }