function ctools_node_comment_wrapper_content_type_render

Render the node comments.

File

plugins/content_types/node_context/node_comment_wrapper.inc, line 29

Code

function ctools_node_comment_wrapper_content_type_render($subtype, $conf, $panel_args, $context) {
    $node = isset($context->data) ? clone $context->data : NULL;
    $block = new stdClass();
    $block->module = 'comments';
    $block->delta = $node->nid;
    $renderable = array(
        '#theme' => 'comment_wrapper__node_' . $node->type,
        '#node' => $node,
        'comments' => array(),
        'comment_form' => array(),
    );
    // Add in the comments.
    if ($node->comment_count && user_access('access comments') || user_access('administer comments')) {
        $mode = variable_get('comment_default_mode_' . $node->type, COMMENT_MODE_THREADED);
        $comments_per_page = variable_get('comment_default_per_page_' . $node->type, 50);
        if ($cids = comment_get_thread($node, $mode, $comments_per_page)) {
            $comments = comment_load_multiple($cids);
            comment_prepare_thread($comments);
            $build = comment_view_multiple($comments, $node);
            $build['pager']['#theme'] = 'pager';
            $renderable['comments'] = $build;
        }
    }
    // Stuff in the comment form.
    if ($node->comment == COMMENT_NODE_OPEN) {
        if (user_access('post comments')) {
            $comment = new stdClass();
            $comment->nid = $node->nid;
            $comment->pid = NULL;
            $form_state = array(
                'ctools comment alter' => TRUE,
                'node' => $node,
                'build_info' => array(
                    'args' => array(
                        $comment,
                    ),
                ),
            );
            $renderable['comment_form'] = drupal_build_form('comment_node_' . $node->type . '_form', $form_state);
        }
        elseif (!empty($conf['anon_links'])) {
            $renderable['comment_form'] = theme('comment_post_forbidden', array(
                'node' => $node,
            ));
        }
    }
    $block->content = drupal_render($renderable);
    return $block;
}