Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.68 KB | None | 0 0
  1. function jwl_options_page() {
  2.     ?>
  3.     <div class="wrap">
  4.         <h2><?php _e('Ultimate TinyMCE Plugin Menu','jwl-ultimate-tinymce'); ?></h2>
  5.        
  6.         <div class="postbox-container" style="width: 100%">
  7.            
  8.             <div class="metabox-holder" style="width:65%; float:left; margin-right:10px;">
  9.              <div id="normal-sortables" class="meta-box-sortables">
  10.                  
  11.            
  12.            
  13.            <?php  add_meta_box('jwl_metabox1', __('Buttons Group 1'), 'buttons_group_1', 'ultimate-tinymce', 'side', 'core'); ?>
  14.            <?php $meta_boxes = do_meta_boxes('ultimate-tinymce', 'side', $test_object); ?>
  15.            
  16.            <?php  add_meta_box('jwl_metabox2', __('Buttons Group 2'), 'buttons_group_2', 'ultimate-tinymce2', 'side', 'core'); ?>
  17.            <?php $meta_boxes2 = do_meta_boxes('ultimate-tinymce2', 'side', $test_object2); ?>
  18.            
  19.            <?php  add_meta_box('jwl_metabox3', __('Enable Advanced Features'), 'buttons_group_3', 'ultimate-tinymce3', 'side', 'core'); ?>
  20.            <?php $meta_boxes3 = do_meta_boxes('ultimate-tinymce3', 'side', $test_object3); ?>
  21.            
  22.            <?php  add_meta_box('jwl_metabox4', __('Miscellaneous Features'), 'buttons_group_4', 'ultimate-tinymce4', 'side', 'core'); ?>
  23.            <?php $meta_boxes4 = do_meta_boxes('ultimate-tinymce4', 'side', $test_object4); ?>
  24.            
  25.            <?php  add_meta_box('jwl_metabox5', __('Delete Database Entries and Values'), 'jwl_ultimate_tinymce_form_uninstall', 'ultimate-tinymce5', 'side', 'core'); ?>
  26.            <?php $meta_boxes5 = do_meta_boxes('ultimate-tinymce5', 'side', $test_object5); ?>
  27.            
  28.                
  29.         </div>
  30.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement