Guest User

Untitled

a guest
Dec 18th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. echo '<h1>'. $this->escape($tparams->get('page_heading')) . '</h1>';
  2. echo '<div class="page-header">';
  3. echo '<h2>';
  4. if ($this->item->published == 0){
  5. echo '<span class="label label-warning">' . JText::_('JUNPUBLISHED') . '</span>';
  6. }
  7. echo '<span class="contact-name" itemprop="name">'. $this->contact->name . '</span>';
  8. echo '</h2>';
  9. echo '</div>';
  10.  
  11. <h1><?=$this->escape($tparams->get('page_heading'))?></h1>
  12. <div class="page-header">
  13. <h2>
  14. <span class="label label-warning"><?=($this->item->published ? JText::_('JUNPUBLISHED') : '')?></span>
  15. <span class="contact-name" itemprop="name"><?=$this->contact->name?></span>
  16. </h2>
  17. </div>
  18.  
  19. <?php elseif ($show_contact_category === 'show_with_link') : ?>
  20. <?php $contactLink = ContactHelperRoute::getCategoryRoute($this->contact->catid); ?>
  21.  
  22. <h1><?=$this->escape($tparams->get('page_heading'))?></h1>
  23.  
  24. <h1>{{ page_heading }}</h1>
Add Comment
Please, Sign In to add comment