PluginProbe ʕ •ᴥ•ʔ
Tracking Code Manager / 1.5
Tracking Code Manager v1.5
trunk 1.11.8 1.11.9 1.12.0 1.12.1 1.12.2 1.12.3 1.4 1.5 2.0.0 2.0.1 2.0.13 2.0.14 2.0.15 2.0.16 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0
tracking-code-manager / includes / admin / about.php
tracking-code-manager / includes / admin Last commit date
about.php 11 years ago editor.php 11 years ago feedback.php 11 years ago manager.php 11 years ago metabox.php 11 years ago settings.php 11 years ago
about.php
30 lines
1 <?php
2 function tcm_ui_about() {
3 global $tcm;
4
5 $tcm->Options->pushSuccessMessage($tcm->Lang->L('AboutNotice'));
6 $tcm->Options->writeMessages();
7
8 ?>
9 <div><?php $tcm->Lang->P('AboutText')?></div>
10 <style>
11 ul li {
12 padding:2px;
13 }
14 </style>
15 <ul>
16 <li>
17 <img style="float:left; margin-right:10px;" src="<?php echo TCM_PLUGIN_IMAGES?>email.png" />
18 <a href="mailto:aleste@intellywp.com">aleste@intellywp.com</a>
19 </li>
20 <li>
21 <img style="float:left; margin-right:10px;" src="<?php echo TCM_PLUGIN_IMAGES?>twitter.png" />
22 <?php $tcm->Utils->twitter('intellywp')?>
23 </li>
24 <li>
25 <img style="float:left; margin-right:10px;" src="<?php echo TCM_PLUGIN_IMAGES?>internet.png" />
26 <a href="http://www.intellywp.com" target="_new">IntellyWP.com</a>
27 </li>
28 </ul>
29 <?php
30 }