| 1 |
<?php |
| 2 |
|
| 3 |
class WPUPG_Support_Tab { |
| 4 |
|
| 5 |
public function __construct() |
| 6 |
{ |
| 7 |
add_action( 'admin_footer-' . WPUPG_POST_TYPE . '_page_wpupg_admin', array( $this, 'add_support_tab' ) ); |
| 8 |
add_action( 'admin_footer-' . WPUPG_POST_TYPE . '_page_wpupg_faq', array( $this, 'add_support_tab' ) ); |
| 9 |
} |
| 10 |
|
| 11 |
public function add_support_tab() |
| 12 |
{ |
| 13 |
include(WPUltimatePostGrid::get()->coreDir . '/static/support_tab.html'); |
| 14 |
} |
| 15 |
} |