source: sipes/cord/modules/comment/comment-wrapper.tpl.php @ 8a8efa8

stableversion-3.0
Last change on this file since 8a8efa8 was d7a822e, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 999 octetos
Línea 
1<?php
2
3/**
4 * @file comment-wrapper.tpl.php
5 * Default theme implementation to wrap comments.
6 *
7 * Available variables:
8 * - $content: All comments for a given page. Also contains sorting controls
9 *   and comment forms if the site is configured for it.
10 *
11 * The following variables are provided for contextual information.
12 * - $node: Node object the comments are attached to.
13 * The constants below the variables show the possible values and should be
14 * used for comparison.
15 * - $display_mode
16 *   - COMMENT_MODE_FLAT_COLLAPSED
17 *   - COMMENT_MODE_FLAT_EXPANDED
18 *   - COMMENT_MODE_THREADED_COLLAPSED
19 *   - COMMENT_MODE_THREADED_EXPANDED
20 * - $display_order
21 *   - COMMENT_ORDER_NEWEST_FIRST
22 *   - COMMENT_ORDER_OLDEST_FIRST
23 * - $comment_controls_state
24 *   - COMMENT_CONTROLS_ABOVE
25 *   - COMMENT_CONTROLS_BELOW
26 *   - COMMENT_CONTROLS_ABOVE_BELOW
27 *   - COMMENT_CONTROLS_HIDDEN
28 *
29 * @see template_preprocess_comment_wrapper()
30 */
31?>
32<div id="comments">
33  <?php print $content; ?>
34</div>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.