변경 파일 목록
총 1개
Controller (1)
GoodsRecomController.phpMobile/Goods/변경 파일 코드
추가삭제
변경 전GoodsRecomController.php
| use Framework\Debug\Exception\AlertBackException; | |
| use Framework\Debug\Exception\AlertOnlyException; | |
| use Framework\Debug\Exception\Framework\Debug\Exception; | |
| use Framework\Utility\DateTimeUtils; | |
| use Message; | |
| $this->setData('themeInfo', gd_isset($cateInfo)); | |
| $this->setData('gPageName', __("추천상품")); | |
| } catch (\Exception $e) { | |
| throw new AlertBackException($e->getMessage()); | |
| } | |
| } | |
| } | |
변경 후GoodsRecomController.php
| use Framework\Debug\Exception\AlertBackException; | |
| use Framework\Debug\Exception\AlertOnlyException; | |
| use Framework\Debug\Exception\DatabaseException; | |
| use Framework\Debug\Exception\Framework\Debug\Exception; | |
| use Framework\Utility\DateTimeUtils; | |
| use Message; | |
| $this->setData('themeInfo', gd_isset($cateInfo)); | |
| $this->setData('gPageName', __("추천상품")); | |
| } catch (DatabaseException $exception) { | |
| throw new AlertBackException(__('잘못된 접근입니다.')); | |
| } catch (\Exception $e) { | |
| throw new AlertBackException($e->getMessage()); | |
| } | |
| } | |
| } | |