Examples of DownloadForm


Examples of com.jpoweredcart.admin.form.catalog.DownloadForm

    }
  }
 
  @Override
  public DownloadForm newForm() {
    DownloadForm dlForm = new DownloadForm();
    dlForm.setDescs(languageAdminModel
        .createDescriptionList(DownloadDesc.class));
    return dlForm;
  }
View Full Code Here

Examples of com.jpoweredcart.admin.form.catalog.DownloadForm

  @Override
  public DownloadForm getForm(Integer dlId) {
    Integer languageId = getSettingService().getConfig(SettingKey.ADMIN_LANGUAGE_ID, Integer.class);
    String sql = "SELECT DISTINCT * FROM " +quoteTable("download")+ " d LEFT JOIN "+quoteTable("download_description")+
        " dd ON (d.download_id = dd.download_id) WHERE d.download_id = ? AND dd.language_id = ?";
    DownloadForm dlForm = (DownloadForm)getJdbcOperations().queryForObject(
        sql, new Object[]{dlId, languageId},
        new DownloadRowMapper().setTargetClass(DownloadForm.class));
      dlForm.setDescs(getDescriptions(dlId));
   
    dlForm.setDownloadDir(downloadFileService.getUrl(""));//leave it empty to get only baseUrl
   
    return dlForm;
  }
View Full Code Here

Examples of com.jpoweredcart.admin.form.catalog.DownloadForm

  @RequestMapping(value="/edit/{id}")
  public String edit(@PathVariable("id") Integer id, Model model){
   
    checkModifyPermission();
   
    DownloadForm dlForm = downloadAdminModel.getForm(id);
    addFormAttributes(dlForm, model);
   
    return "/admin/catalog/downloadForm";
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.