Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. $ms = \Concrete\Core\Multilingual\Page\Section\Section::getCurrentSection();
  3. if (is_object($ms)) {
  4. if ($ms->getLocale() == 'en_US') {
  5. $a = new GlobalArea('Global Nav English');
  6. }
  7. }
  8. if (!is_object($a)) {
  9. $a = new GlobalArea('Global Nav');
  10. }
  11. $a->display();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement