PluginProbe
Private groups / trunk
Private groups vtrunk
trunk 1.5 1.6 1.7 1.8 1.8.1 1.9.1 1.9.2 2.0 2.0.1 2.2 2.3 2.4 2.5 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 All 116 releases
bbp-private-groups / includes / shortcode_warning.php

shortcode_warning.php in Private groups trunk, at includes/shortcode_warning.php

50 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 //********************************************start of widget warning
4
5
6
7 function pg_shortcode_warning() {
8 ?>
9
10 <table class="form-table">
11
12 <tr valign="top">
13 <th colspan="2">
14
15 <h3>
16 <?php _e ('Shortcode Warning' , 'bbp-private-groups' ) ; ?>
17 </h3>
18
19 <h4><span style="color:blue"><?php _e('The [bbp-single-forum], [bbp-single-topic] and [bbp-single-reply] shortcodes widgets will still show all forums, topics and replies etc.','bbp-private-groups' ) ; ?></span></h4>
20 <h4><span style="color:blue"><?php _e('DO NOT USE THESE SHORTCODES - instead use the replacements shown below','bbp-private-groups' ) ; ?></span></h4>
21 <h4><span style="color:blue"><?php _e('Additionally do not use [bbp-single-view], [bbp-topic-tags] or [bbp-single-tag] shortcodes as these may show unintended content','bbp-private-groups' ) ; ?></span></h4>
22 </td>
23 </tr>
24
25 <tr valign="top">
26 <th colspan="2">
27 <h3>
28 <?php _e ('Additional Shortcodes' , 'bbp-private-groups' ) ; ?>
29 </h3>
30 <p><tt>[pg-single-forum id=2923 ]</tt> </p>
31 <p><tt>[pg-single-forum id=2923 message ="You do not have permission to view this"]</tt> </p>
32 <p> <?php _e('Displays a single forum with an ID of 2923, with optional message for non-logged in users or users without permission for this forum', 'bbp-private-groups' ) ; ?>
33 </p>
34 <p><tt>[pg-single-topic id=15646 ]</tt></p>
35 <p><tt>[pg-single-topic id=15646 message ="You do not have permission to view this]</tt> </p>
36 <p> <?php _e('Displays a single topic with an ID of 15646, with optional message for non-logged in users or users without permission for this forum', 'bbp-private-groups' ) ; ?></p>
37 <p><tt>[pg-single-reply id=17658 message ="You do not have permission to view this]</tt></p>
38 <p><tt>[pg-single-reply id=17658 message ="You do not have permission to view this]</tt></p>
39 <p><?php _e('Displays a single reply with an ID of 17658, with optional message for non-logged in users or users without permission for this forum', 'bbp-private-groups' ) ; ?></p>
40
41
42
43
44
45 </div><!--end sf-wrap-->
46 </div><!--end wrap-->
47 <?php
48 }
49 ?>
50