PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 1.0.7
ShareThis Dashboard for Google Analytics v1.0.7
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / options.php
googleanalytics Last commit date
LICENSE 9 years ago googleanalytics.php 9 years ago options.php 13 years ago readme.txt 9 years ago screenshot-1.png 13 years ago screenshot-2.png 13 years ago
options.php
27 lines
1 <div class="wrap">
2 <h2>Google Analytics</h2>
3
4 <form method="post" action="options.php">
5 <?php wp_nonce_field('update-options'); ?>
6 <?php settings_fields('googleanalytics'); ?>
7
8 <table class="form-table">
9
10 <tr valign="top">
11 <th scope="row">Web Property ID:</th>
12 <td><input type="text" name="web_property_id" value="<?php echo get_option('web_property_id'); ?>" /></td>
13 </tr>
14
15 </tr>
16
17 </table>
18
19 <input type="hidden" name="action" value="update" />
20
21 <p class="submit">
22 <input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
23 </p>
24
25 </form>
26 </div>
27