You are here

function varbase_support_preprocess_node in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.3

Implements template_preprocess_node().

File

modules/custom/varbase_support/includes/preprocess.inc, line 16

Code

function varbase_support_preprocess_node(&$variables) {
  if ($variables['display_submitted']) {
    $date = $variables['date'];
    $isodate = format_date($variables['created'], 'custom', 'c');
    $variables['submitted'] = t('Submitted by !username on !datetime', array(
      '!username' => $variables['name'],
      '!datetime' => theme('varbase_time', array(
        'date' => $date,
        'isodate' => $isodate,
      )),
    ));
  }
}