@@ -842,6 +842,9 @@ |
||
| 842 | 842 | } |
| 843 | 843 | |
| 844 | 844 | // Fetch some member data! |
| 845 | +/** |
|
| 846 | + * @param string $query_where |
|
| 847 | + */ |
|
| 845 | 848 | function ssi_queryMembers($query_where = null, $query_where_params = array(), $query_limit = '', $query_order = 'id_member DESC', $output_method = 'echo') |
| 846 | 849 | { |
| 847 | 850 | global $context, $settings, $scripturl, $txt, $db_prefix, $user_info; |
@@ -229,6 +229,9 @@ discard block |
||
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | // Display a monthly calendar grid. |
| 232 | +/** |
|
| 233 | + * @param string $grid_name |
|
| 234 | + */ |
|
| 232 | 235 | function template_show_month_grid($grid_name) |
| 233 | 236 | { |
| 234 | 237 | global $context, $settings, $options, $txt, $scripturl, $modSettings, $smcFunc; |
@@ -402,6 +405,9 @@ discard block |
||
| 402 | 405 | } |
| 403 | 406 | |
| 404 | 407 | // Or show a weekly one? |
| 408 | +/** |
|
| 409 | + * @param string $grid_name |
|
| 410 | + */ |
|
| 405 | 411 | function template_show_week_grid($grid_name) |
| 406 | 412 | { |
| 407 | 413 | global $context, $settings, $options, $txt, $scripturl, $modSettings; |
@@ -186,6 +186,9 @@ |
||
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | // Some code for showing a tabbed view. |
| 189 | +/** |
|
| 190 | + * @param integer $menu_context |
|
| 191 | + */ |
|
| 189 | 192 | function template_generic_menu_tabs(&$menu_context) |
| 190 | 193 | { |
| 191 | 194 | global $context, $settings, $options, $scripturl, $txt, $modSettings; |
@@ -1615,6 +1615,9 @@ |
||
| 1615 | 1615 | </form><br />'; |
| 1616 | 1616 | } |
| 1617 | 1617 | |
| 1618 | +/** |
|
| 1619 | + * @param integer $level |
|
| 1620 | + */ |
|
| 1618 | 1621 | function template_permission_show_contents($ident, $contents, $level, $has_more = false) |
| 1619 | 1622 | { |
| 1620 | 1623 | global $settings, $txt, $scripturl, $context; |
@@ -337,6 +337,11 @@ |
||
| 337 | 337 | } |
| 338 | 338 | |
| 339 | 339 | // Recursive function for displaying generic XML data. |
| 340 | +/** |
|
| 341 | + * @param string $parent_ident |
|
| 342 | + * @param string $child_ident |
|
| 343 | + * @param integer $level |
|
| 344 | + */ |
|
| 340 | 345 | function template_generic_xml_recursive($xml_data, $parent_ident, $child_ident, $level) |
| 341 | 346 | { |
| 342 | 347 | // This is simply for neat indentation. |