Guest User

Untitled

a guest
Jan 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <div data-role="footer" class="nav-glyphish-example mobile-footer-nav">
  2. <div data-role="navbar" id="bottom-nav">
  3. <ul>
  4. <?php
  5.  
  6. foreach($element['content'] as $key=>$value):
  7. if($key == "share"): ?>
  8. <li>
  9. <a href="#share_dialog" id="share" data-icon="custom">Share</a>
  10. </li>
  11. <?php
  12. createSharingDialog($value); //Step 1: Call Dialog Creation Helper
  13. endif;
  14.  
  15. //unrelated code follows
  16.  
  17. endforeach; ?>
  18.  
  19. </ul>
  20. </div>
  21. </div>
Add Comment
Please, Sign In to add comment