PluginProbe
CryptX / 3.3.1
CryptX v3.3.1
4.2.1 4.2.0 4.1.1 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.9 2.0 2.1 2.2 2.3 2.3.1 2.3.2 2.3.3 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 All 93 releases
cryptx / include / admin_howto.php

admin_howto.php in CryptX 3.3.1, at include/admin_howto.php

26 lines 735 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * CryptX option page "How to"-Tab
4 */
5 function rw_cryptx_settings_tab_content_howto() {
6 global $cryptX_var, $rw_cryptx_active_tab;
7 if ( 'howto' != $rw_cryptx_active_tab )
8 return;
9 ?>
10
11 <h4><?php _e( "How to use CryptX in your Template",'cryptx' ); ?></h4>
12 <table class="form-table">
13 <tr>
14 <td><?php _e("In your Template you can use the following function to encrypt a email address:",'cryptx'); ?><br>
15 <pre>
16 &lt;?php
17 $content = "name@example.com";
18 echo (function_exists('encryptx'))? encryptx($content) : $content;
19 ?&gt;
20 </pre>
21 </td>
22 </tr>
23 </table>
24 <?php
25 }
26 add_action( 'rw_cryptx_settings_content', 'rw_cryptx_settings_tab_content_howto' );