Advertisement
Ipstenu

Untitled

Oct 24th, 2012
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.82 KB | None | 0 0
  1. <?php
  2. /**
  3. Plugin Name: Tax Rate Upload
  4. Plugin URI: http://wordpress.org/extend/plugins/tax-rate-upload/
  5. Description: This is a plugin to upload a tax rate excell sheet and populate woocommerce zip code tax rates.
  6. Author: Adam Bowen
  7. Version: 1.0
  8. Author URI: http://www.pnw-design.com/
  9. */
  10.  
  11. add_action( 'admin_menu', 'my_plugin_menu' );
  12.  
  13. function my_plugin_menu() {
  14.     add_options_page( 'My Plugin Options', 'Tax Rate Upload', 'manage_options', 'my-unique-identifier', 'my_plugin_options' );
  15. }
  16.  
  17. function my_plugin_options() {
  18.     if ( !current_user_can( 'manage_options' ) )  {
  19.         wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
  20.     }
  21. ?>
  22. <div class="wrap">
  23. <p>Download your states tax rate table from <a href="http://www.taxrates.com/">taxrates.com</a> and upload it here.</p>
  24. </div>
  25. <?php
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement