Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. $author = $this->item->created_by_alias ? $this->item->created_by_alias : $this->item->author;
  3. $user = JFactory::getUser($this->item->created_by);
  4. $blog_datetime = date_create(JText::sprintf(JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC1'))));
  5. $blog_date = date_format($blog_datetime,'d');
  6. $blog_month = date_format($blog_datetime,'M');
  7. $blog_year = date_format($blog_datetime,'Y');
  8. ?>