| 1 |
/* $Id$ */
|
| 2 |
|
| 3 |
-- SUMMARY --
|
| 4 |
|
| 5 |
Comment Display prevents rendering of comments directly appended to the node
|
| 6 |
itself. Instead it plugs them into a $comments variable that can be output
|
| 7 |
anywhere in a theme.
|
| 8 |
|
| 9 |
For a full description visit the project page:
|
| 10 |
http://drupal.org/project/comment_display
|
| 11 |
Bug reports, feature suggestions and latest developments:
|
| 12 |
http://drupal.org/project/issues/comment_display
|
| 13 |
|
| 14 |
|
| 15 |
-- REQUIREMENTS --
|
| 16 |
|
| 17 |
* Comment module in Drupal core or alternative implementations.
|
| 18 |
|
| 19 |
|
| 20 |
-- INSTALLATION --
|
| 21 |
|
| 22 |
* Install as usual, see http://drupal.org/node/70151 for further information.
|
| 23 |
|
| 24 |
|
| 25 |
-- CONFIGURATION --
|
| 26 |
|
| 27 |
* At the time of this writing, this module provides no configuration or any
|
| 28 |
other administrative elements.
|
| 29 |
|
| 30 |
|
| 31 |
-- USAGE --
|
| 32 |
|
| 33 |
* Insert the following snippet into your page.tpl.php:
|
| 34 |
|
| 35 |
<?php print $comments; ?>
|
| 36 |
|
| 37 |
|
| 38 |
-- CONTACT --
|
| 39 |
|
| 40 |
Current maintainers:
|
| 41 |
* Daniel F. Kudwien (sun) - dev@unleashedmind.com
|
| 42 |
|
| 43 |
This project has been sponsored by:
|
| 44 |
* UNLEASHED MIND
|
| 45 |
Specialized in consulting and planning of Drupal powered sites, UNLEASHED
|
| 46 |
MIND offers installation, development, theming, customization, and hosting
|
| 47 |
to get you started. Visit http://www.unleashedmind.com for more information.
|
| 48 |
|