root/afridex/plugins/fresh-page/RCCWP_CreateCustomWritePanelPage.php @ 23

Revision 21, 0.7 kB (checked in by admin, 18 years ago)
Line 
1<?php
2include_once('RCCWP_CustomWritePanelPage.php');
3class 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="" method="post" id="create-new-write-panel-form">
14               
15                <?php RCCWP_CustomWritePanelPage::Content(); ?>
16               
17                <p class="submit" >
18                        <input name="cancel-create-custom-write-panel" type="submit" id="cancel-create-custom-write-panel" value="<?php _e('Cancel'); ?>" />
19                        <input name="finish-create-custom-write-panel" 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?>
Note: See TracBrowser for help on using the browser.