You are here

function advanced_forum_preprocess_advanced_forum_post_edited in Advanced Forum 7.2

Preprocess variables for advanced-forum.naked.post-edited.tpl.php.

File

includes/theme.inc, line 300
Holds theme functions and template preprocesses. Other style related functions are in style.inc

Code

function advanced_forum_preprocess_advanced_forum_post_edited(&$variables) {
  $editor = user_load($variables['who']);
  $variables['edited_name'] = theme('username', array(
    'account' => $editor,
  ));
  $variables['edited_datetime'] = format_date($variables['when'], 'custom', variable_get('date_format_short', 'm/d/Y - H:i'));
  $variables['edited_reason'] = empty($variables['why']) ? '' : $variables['why'];
}