Beispiel #1
0
 public function actionSync()
 {
     $menu = $this->app->menu;
     $wid = $this->wid;
     $menus = Menu::getWechatMenus($wid);
     $buttons = $this->parseMenus($menus);
     if ($menu->add($buttons)) {
         Yii::$app->getSession()->setFlash('success', '同步微信菜单成功');
         return $this->ajaxReturn();
     } else {
         return $this->ajaxReturn(null, '同步菜单失败', 0);
     }
 }