created variable. * - $changed: Formatted date and time for when the comment was last changed. * Preprocess functions can reformat it by calling format_date() with the * desired parameters on the $comment->changed variable. * - $new: New comment marker. * - $permalink: Comment permalink. * - $submitted: Submission information created from $author and $created during * template_preprocess_comment(). * - $picture: Authors picture. * - $signature: Authors signature. * - $status: Comment status. Possible values are: * comment-unpublished, comment-published or comment-preview. * - $title: Linked title. * - $classes: String of classes that can be used to style contextually through * CSS. It can be manipulated through the variable $classes_array from * preprocess functions. The default values can be one or more of the following: * - comment: The current template type, i.e., "theming hook". * - comment-by-anonymous: Comment by an unregistered user. * - comment-by-node-author: Comment by the author of the parent node. * - comment-preview: When previewing a new or edited comment. * The following applies only to viewers who are registered users: * - comment-unpublished: An unpublished comment visible only to administrators. * - comment-by-viewer: Comment by the user currently viewing the page. * - comment-new: New comment since last the visit. * - $title_prefix (array): An array containing additional output populated by * modules, intended to be displayed in front of the main title tag that * appears in the template. * - $title_suffix (array): An array containing additional output populated by * modules, intended to be displayed after the main title tag that appears in * the template. * * These two variables are provided for context: * - $comment: Full comment object. * - $node: Node object the comments are attached to. * * Other variables: * - $classes_array: Array of html class attribute values. It is flattened * into a string within the variable $classes. * * @see template_preprocess() * @see template_preprocess_comment() * @see template_process() * @see theme_comment() * * @ingroup themeable */ $uid = $content['comment_body']['#object']->uid; $query = db_select('users', 'u'); $query->Leftjoin('field_data_field_firstname', 'fn', 'u.uid = fn.entity_id'); $query->Leftjoin('field_data_field_lastname', 'ln', 'u.uid = ln.entity_id'); $query ->fields('u', array('name')) ->fields('fn',array('field_firstname_value')) ->fields('ln',array('field_lastname_value')) ->condition('u.uid', $uid); $result = $query->execute()->fetchAll(); $author_name = $result[0]->name; /*$comment->created ->$format_date;*/ if(isset($result[0]->field_firstname_value) && !empty($result[0]->field_firstname_value) && isset($result[0]->field_lastname_value)){ $author_name = $result[0]->field_firstname_value." ".$result[0]->field_lastname_value; } ?>