예제 #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());
 }