예제 #1
0
파일: customer.php 프로젝트: rmiddle/feg
 function showRecipientTypeAction()
 {
     @($type = DevblocksPlatform::importGPC($_REQUEST['type'], 'integer', 0));
     @($selected_type = DevblocksPlatform::importGPC($_REQUEST['selected_type'], 'integer', 0));
     $tpl = DevblocksPlatform::getTemplateService();
     $tpl->assign('path', $this->_TPL_PATH);
     $tpl->assign('type', $type);
     $tpl->assign('selected_type', $selected_type);
     $export_type = DAO_ExportType::getAll();
     $tpl->assign('export_type', $export_type);
     $tpl->display('file:' . $this->_TPL_PATH . 'customer/tabs/recipient/select_export_type.tpl');
 }