변경 파일 목록
총 1개
Controller (1)
AdminPanelApiController.phpAdmin/Share/변경 파일 코드
추가삭제
변경 전AdminPanelApiController.php
| $this->addPopupPanelByCos($cosApi, 'memberList'); | |
| } | |
| // 디자인 스킨 리스트 팝업 | |
| if ($this->isDesignSkinListPanel($pageCode)) { | |
| $this->addPopupPanelByCos($cosApi, 'designSkinList'); | |
| 'main' => $cosSectionCodeList['modalPopup']['main'], | |
| 'kakaoAlrim' => $cosSectionCodeList['kakaoAlrim'], | |
| 'memberList' => $cosSectionCodeList['modalPopup']['memberList'], | |
| 'designSkinList' => $cosSectionCodeList['modalPopup']['designSkinList'], | |
| 'mobileDesignSkinList' => $cosSectionCodeList['modalPopup']['mobileDesignSkinList'], | |
| 'bankdaService' => $cosSectionCodeList['modalPopup']['bankdaService'], | |
| return $pageCode['menuCode'] === 'member' && $pageCode['menuFile'] === 'member_list'; | |
| } | |
| /** | |
| * @param array $pageCode | |
| * @return bool | |
변경 후AdminPanelApiController.php
| $this->addPopupPanelByCos($cosApi, 'memberList'); | |
| } | |
| // CRM 그룹 팝업 | |
| if ($this->isCrmGroupPanel($pageCode)) { | |
| $this->addPopupPanelByCos($cosApi, 'crmGroup'); | |
| } | |
| // 디자인 스킨 리스트 팝업 | |
| if ($this->isDesignSkinListPanel($pageCode)) { | |
| $this->addPopupPanelByCos($cosApi, 'designSkinList'); | |
| 'main' => $cosSectionCodeList['modalPopup']['main'], | |
| 'kakaoAlrim' => $cosSectionCodeList['kakaoAlrim'], | |
| 'memberList' => $cosSectionCodeList['modalPopup']['memberList'], | |
| 'crmGroup' => $cosSectionCodeList['modalPopup']['crmGroup'], | |
| 'designSkinList' => $cosSectionCodeList['modalPopup']['designSkinList'], | |
| 'mobileDesignSkinList' => $cosSectionCodeList['modalPopup']['mobileDesignSkinList'], | |
| 'bankdaService' => $cosSectionCodeList['modalPopup']['bankdaService'], | |
| return $pageCode['menuCode'] === 'member' && $pageCode['menuFile'] === 'member_list'; | |
| } | |
| /** | |
| * CRM 그룹 페이지 | |
| * - CRM > CRM 관리 > CRM 그룹 (crm/crm/crmGroup) | |
| * @param array $pageCode | |
| * @return bool | |
| */ | |
| private function isCrmGroupPanel(array $pageCode): bool | |
| { | |
| return $pageCode['menuCode'] === 'crm' && $pageCode['menuFile'] === 'crm_group'; | |
| } | |
| /** | |
| * @param array $pageCode | |
| * @return bool | |