묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
문자전송 모듈 잔액정보 페이지로 가져오기 문의드려요
2014.03.14 16:39
쿨사이트에 문자전송 잔액정보를 가져오고 싶다라고 문의 했더니
아래의 내용을 알려줬습니다. ㅜㅠ
저걸 어떻게 넣어야 페이지에서 읽을 수 있을까요?
도움 요청합니다!! 감사합니다.
잔액정보 가져오기
모델 객체의 getCashInfo 메서드를 사용하여 잔액정보를 읽어옵니다.
1 2 3 4 5 6 7 | $cashinfo = $oTextmessageModel->getCashInfo(); $balance_cash = $cashinfo->get('cash'); $balance_point = $cashinfo->get('point'); $balance_mdrop = $cashinfo->get('mdrop'); $sms_price = $cashinfo->get('sms_price'); $lms_price = $cashinfo->get('lms_price'); $mms_price = $cashinfo->get('mms_price'); |