Exemplo n.º 1
0
 public function actionIndex()
 {
     if (isset($_GET['logout'])) {
         $this->user->logout();
         CShop::app()->redirect('login.php');
     }
     $news = json_decode(@file_get_contents("http://cshop.irprog.com/user?json&ip=" . $_SERVER['REMOTE_ADDR'] . "&domain=" . CShop::siteURL() . CShop::$baseurl), true);
     $this->render('admin/index', array('news' => $news));
 }