2013-07-24 12:34:12 +00:00
< ? php
/**
* Add some content to the help tab .
*
* @ author WooThemes
* @ category Admin
* @ package WooCommerce / Admin
* @ version 2.1 . 0
*/
if ( ! defined ( 'ABSPATH' ) ) exit ; // Exit if accessed directly
if ( ! class_exists ( 'WC_Admin_Help' ) ) :
/**
* WC_Admin_Help Class
*/
class WC_Admin_Help {
/**
* Hook in tabs .
*/
public function __construct () {
add_action ( " current_screen " , array ( $this , 'add_tabs' ), 50 );
}
/**
2014-08-27 20:43:12 +00:00
* Add Contextual help tabs
2013-07-24 12:34:12 +00:00
*/
public function add_tabs () {
$screen = get_current_screen ();
2013-07-25 15:29:25 +00:00
if ( ! in_array ( $screen -> id , wc_get_screen_ids () ) )
2013-07-24 12:34:12 +00:00
return ;
$screen -> add_help_tab ( array (
2014-08-27 20:43:12 +00:00
'id' => 'woocommerce_docs_tab' ,
'title' => __ ( 'Documentation' , 'woocommerce' ),
'content' =>
2013-07-24 12:34:12 +00:00
2014-08-27 20:43:12 +00:00
'<p>' . __ ( 'Thank you for using WooCommerce :) Should you need help using or extending WooCommerce please read the documentation.' , 'woocommerce' ) . '</p>' .
2013-07-24 12:34:12 +00:00
2014-08-27 20:43:12 +00:00
'<p><a href="' . 'http://docs.woothemes.com/documentation/plugins/woocommerce/' . '" class="button button-primary">' . __ ( 'WooCommerce Documentation' , 'woocommerce' ) . '</a> <a href="' . 'http://docs.woothemes.com/wc-apidocs/' . '" class="button">' . __ ( 'Developer API Docs' , 'woocommerce' ) . '</a></p>'
2013-07-24 12:34:12 +00:00
) );
$screen -> add_help_tab ( array (
2014-08-27 20:43:12 +00:00
'id' => 'woocommerce_support_tab' ,
'title' => __ ( 'Support' , 'woocommerce' ),
'content' =>
2013-07-24 12:34:12 +00:00
2014-08-27 20:43:12 +00:00
'<p>' . sprintf ( __ ( 'After <a href="%s">reading the documentation</a>, for further assistance you can use the <a href="%s">community forum</a>, or if you have access as a WooThemes customer, <a href="%s">our support desk</a>.' , 'woocommerce' ), 'http://docs.woothemes.com/documentation/plugins/woocommerce/' , 'http://wordpress.org/support/plugin/woocommerce' , 'http://support.woothemes.com' ) . '</p>' .
2013-07-24 12:34:12 +00:00
2014-08-27 20:43:12 +00:00
'<p>' . __ ( 'Before asking for help we recommend checking the status page to identify any problems with your configuration.' , 'woocommerce' ) . '</p>' .
2013-07-24 12:34:12 +00:00
2014-08-27 20:43:12 +00:00
'<p><a href="' . admin_url ( 'admin.php?page=wc-status' ) . '" class="button button-primary">' . __ ( 'System Status' , 'woocommerce' ) . '</a> <a href="' . 'http://wordpress.org/support/plugin/woocommerce' . '" class="button">' . __ ( 'Community Support' , 'woocommerce' ) . '</a> <a href="' . 'http://support.woothemes.com' . '" class="button">' . __ ( 'Customer Support' , 'woocommerce' ) . '</a></p>'
2013-07-24 12:34:12 +00:00
) );
$screen -> add_help_tab ( array (
2014-08-27 20:43:12 +00:00
'id' => 'woocommerce_bugs_tab' ,
'title' => __ ( 'Found a bug?' , 'woocommerce' ),
'content' =>
2013-07-24 12:34:12 +00:00
2014-08-27 20:43:12 +00:00
'<p>' . sprintf ( __ ( 'If you find a bug within WooCommerce core you can create a ticket via <a href="%s">Github issues</a>. Ensure you read the <a href="%s">contribution guide</a> prior to submitting your report. Be as descriptive as possible and please include your <a href="%s">system status report</a>.' , 'woocommerce' ), 'https://github.com/woothemes/woocommerce/issues?state=open' , 'https://github.com/woothemes/woocommerce/blob/master/CONTRIBUTING.md' , admin_url ( 'admin.php?page=wc-status' ) ) . '</p>' .
2013-07-24 12:34:12 +00:00
2014-08-28 08:53:14 +00:00
'<p><a href="' . 'https://github.com/woothemes/woocommerce/issues?state=open' . '" class="button button-primary">' . __ ( 'Report a bug' , 'woocommerce' ) . '</a> <a href="' . admin_url ( 'admin.php?page=wc-status' ) . '" class="button">' . __ ( 'System Status' , 'woocommerce' ) . '</a></p>'
2013-07-24 12:34:12 +00:00
) );
$screen -> set_help_sidebar (
'<p><strong>' . __ ( 'For more information:' , 'woocommerce' ) . '</strong></p>' .
2014-08-28 08:53:14 +00:00
'<p><a href="' . 'http://www.woothemes.com/woocommerce/' . '" target="_blank">' . __ ( 'About WooCommerce' , 'woocommerce' ) . '</a></p>' .
'<p><a href="' . 'http://wordpress.org/extend/plugins/woocommerce/' . '" target="_blank">' . __ ( 'WordPress.org Project' , 'woocommerce' ) . '</a></p>' .
'<p><a href="' . 'https://github.com/woothemes/woocommerce' . '" target="_blank">' . __ ( 'Github Project' , 'woocommerce' ) . '</a></p>' .
'<p><a href="' . 'http://www.woothemes.com/product-category/themes/woocommerce/' . '" target="_blank">' . __ ( 'Official Themes' , 'woocommerce' ) . '</a></p>' .
'<p><a href="' . 'http://www.woothemes.com/product-category/woocommerce-extensions/' . '" target="_blank">' . __ ( 'Official Extensions' , 'woocommerce' ) . '</a></p>'
2013-07-24 12:34:12 +00:00
);
}
}
endif ;
2014-08-27 20:43:12 +00:00
return new WC_Admin_Help ();