コード例 #1
0
ファイル: localPower.view.php プロジェクト: ohjack/newErp
 public function view_mailPushSettingList()
 {
     include_once WEB_PATH . 'lib/global_ebay_accounts.php';
     //导入ebay平台账号
     $bindObj = new UserAccountBindModel();
     $relatio = array();
     $userObj = new GetLoacalUserModel();
     foreach ($GLOBAL_EBAY_ACCOUNT as $account) {
         $users = $bindObj->getBindInfo($account);
         foreach ($users as &$u) {
             $userInfo = $userObj->getUserInfoBySysId($u['userID']);
             $u['name'] = isset($userInfo['global_user_name']) ? $userInfo['global_user_name'] : '';
         }
         $relation[$account] = $users;
     }
     $allowedList = $bindObj->getAllowedAccount($_SESSION['globaluserid']);
     $GLOBAL_EBAY_ACCOUNT = array_intersect($allowedList, $GLOBAL_EBAY_ACCOUNT);
     //         print_r($relation);exit;
     $this->smarty->assign('accountList', $GLOBAL_EBAY_ACCOUNT);
     $this->smarty->assign('sec_menue', 4);
     $this->smarty->assign('toplevel', 4);
     $this->smarty->assign('powerList', $relation);
     $this->smarty->assign('toptitle', 'message类别列表');
     $this->smarty->display('mailPushSettingList.htm');
 }