PluginProbe
Wp Tracking Codes / 1.0
Wp Tracking Codes v1.0
trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.1.0, 1.10.0 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.5.0 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3
wp-tracking-codes / includes / admin / views / html-admin-page.php

html-admin-page.php in Wp Tracking Codes 1.0, at includes/admin/views/html-admin-page.php

53 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Admin help message.
4 *
5 * @package WooCommerce_PagSeguro/Admin/Settings
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit;
10 }
11 ?>
12 <style type="text/css">
13 .form-table{
14 clear:none !important;
15 }
16 </style>
17 <div class="wrap">
18 <form method="POST" action="options.php">
19 <h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
20 <div id="poststuff" class="metabox-holder has-right-sidebar">
21 <div class="inner-sidebar">
22 <div id="side-sortables" class="meta-box-sortabless ui-sortable" style="position:relative;">
23 <div id="sm_pnres" class="postbox">
24 <h3 class="hndle"><span>About this Plugin:</span></h3>
25 <div class="inside">
26 <a class="sm_button sm_pluginHome" target="_blank" href="https://github.com/heitorspedroso/wp-tracking-codes">Contribute in repository GitHub</a><br>
27 <a class="sm_button sm_pluginHome" target="_blank" href="https://br.wordpress.org/plugins/wp-tracking-codes">Wordpress Plugin</a>
28 </div>
29 </div>
30 </div>
31 </div>
32 <div class="has-sidebar sm-padded">
33 <div id="post-body-content" class="has-sidebar-content">
34 <div class="meta-box-sortabless">
35 <!-- Rebuild Area -->
36 <div id="sm_rebuild" class="postbox">
37 <h3 class="hndle"><span>Your Tracking Codes</span></h3>
38 <div class="inside">
39 <?php //echo $options = get_option( 'tracking_analytics' ); ?>
40 <?php settings_fields( 'wp-tracking-codes' ); //pass slug name of page, also referred
41 //to in Settings API as option group name
42 do_settings_sections( 'wp-tracking-codes' ); //pass slug name of page
43 submit_button();
44 ?>
45 </div>
46 </div>
47 </div>
48 </div>
49 </div>
50 </div>
51 </form>
52 </div>
53