root/afridex/plugins/Flutter/RCCWP_CreateCustomGroupPage.php

Revision 21, 0.7 kB (checked in by admin, 18 years ago)
Line 
1<?php
2include_once('RCCWP_CustomGroupPage.php');
3class RCCWP_CreateCustomGroupPage
4{
5        function Main()
6        {
7                ?>
8
9                <div class="wrap">
10
11                <h2><?php _e('Create Custom Group'); ?></h2>
12               
13                <form action="<?php echo RCCWP_ManagementPage::GetCustomWritePanelGenericUrl('finish-create-custom-group')?>" method="post" id="create-new-group-form">
14               
15                <?php RCCWP_CustomGroupPage::Content(); ?>
16               
17                <p class="submit" >
18                        <a style="color:black" href="<?php echo RCCWP_ManagementPage::GetCustomWritePanelGenericUrl('cancel-create-custom-group')?>" class="button"><?php _e('Cancel'); ?></a>
19                        <input type="submit" id="finish-create-custom-group" 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.