A Qcodo based CMS/ecommerce framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.0 KiB

12 years ago
  1. <?php
  2. // This is the HTML template include file (.tpl.php) for content_itemEditPanel.
  3. // Remember that this is a DRAFT. It is MEANT to be altered/modified.
  4. // Be sure to move this out of the drafts/dashboard subdirectory before modifying to ensure that subsequent
  5. // code re-generations do not overwrite your changes.
  6. ?>
  7. <div id="formControls">
  8. <?php $_CONTROL->lblId->RenderWithName(); ?>
  9. <?php $_CONTROL->txtName->RenderWithName(); ?>
  10. <?php $_CONTROL->txtCssclass->RenderWithName(); ?>
  11. <?php $_CONTROL->txtTitle->RenderWithName(); ?>
  12. <?php $_CONTROL->txtDescription->RenderWithName(); ?>
  13. <?php $_CONTROL->txtText->RenderWithName(); ?>
  14. <?php $_CONTROL->txtSortOrder->RenderWithName(); ?>
  15. <?php $_CONTROL->chkShowTitle->RenderWithName(); ?>
  16. <?php $_CONTROL->chkShowDescription->RenderWithName(); ?>
  17. <?php $_CONTROL->chkShowCreator->RenderWithName(); ?>
  18. <?php $_CONTROL->chkShowCreationDate->RenderWithName(); ?>
  19. <?php $_CONTROL->chkShowLastModification->RenderWithName(); ?>
  20. <?php $_CONTROL->lblCreatorId->RenderWithName(); ?>
  21. <?php $_CONTROL->txtCopyrightNotice->RenderWithName(); ?>
  22. <?php $_CONTROL->lblCreationDate->RenderWithName(); ?>
  23. <?php $_CONTROL->lblLastModification->RenderWithName(); ?>
  24. <?php $_CONTROL->lstPublicPermissions->RenderWithName(); ?>
  25. <?php $_CONTROL->lstUserPermissions->RenderWithName(); ?>
  26. <?php $_CONTROL->lstGroupPermissions->RenderWithName(); ?>
  27. <?php $_CONTROL->lstType->RenderWithName(); ?>
  28. <?php $_CONTROL->lstStatus->RenderWithName(); ?>
  29. <?php $_CONTROL->lstContentBlocks->RenderWithName(true, "Rows=7"); ?>
  30. <?php $_CONTROL->lstContentCategories->RenderWithName(true, "Rows=7"); ?>
  31. <?php $_CONTROL->lstUsergroups->RenderWithName(true, "Rows=7"); ?>
  32. </div>
  33. <div id="formActions">
  34. <div id="save"><?php $_CONTROL->btnSave->Render(); ?></div>
  35. <div id="cancel"><?php $_CONTROL->btnCancel->Render(); ?></div>
  36. <div id="delete"><?php $_CONTROL->btnDelete->Render(); ?></div>
  37. </div>