|
Revision 21, 0.8 kB
(checked in by admin, 18 years ago)
|
|
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | include_once('RCCWP_CustomWritePanelPage.php'); |
|---|
| 3 | class RCCWP_CreateCustomWritePanelPage |
|---|
| 4 | { |
|---|
| 5 | function Main() |
|---|
| 6 | { |
|---|
| 7 | ?> |
|---|
| 8 | |
|---|
| 9 | <div class="wrap"> |
|---|
| 10 | |
|---|
| 11 | <h2><?php _e('Create Custom Write Panel'); ?></h2> |
|---|
| 12 | |
|---|
| 13 | <form action="<?php echo RCCWP_ManagementPage::GetCustomWritePanelGenericUrl('finish-create-custom-write-panel')?>" method="post" id="create-new-write-panel-form"> |
|---|
| 14 | |
|---|
| 15 | <?php RCCWP_CustomWritePanelPage::Content(); ?> |
|---|
| 16 | |
|---|
| 17 | <p class="submit" > |
|---|
| 18 | <a style="color:black" href="<?php echo RCCWP_ManagementPage::GetCustomWritePanelGenericUrl('cancel-create-custom-write-panel')?>" class="button"><?php _e('Cancel'); ?></a> |
|---|
| 19 | <input type="submit" id="finish-create-custom-write-panel" value="<?php _e('Finish'); ?>" /> |
|---|
| 20 | </p> |
|---|
| 21 | |
|---|
| 22 | </form> |
|---|
| 23 | |
|---|
| 24 | </div> |
|---|
| 25 | |
|---|
| 26 | <?php |
|---|
| 27 | } |
|---|
| 28 | } |
|---|
| 29 | ?> |
|---|