/administrator/components/com_easysocial/themes/default/html/bootstrap.popover.php

https://gitlab.com/vnsoftdev/swc · PHP · 29 lines · 19 code · 0 blank · 10 comment · 5 complexity · 0a0d46813f26a67469883e296efbccc1 MD5 · raw file

  1. <?php
  2. /**
  3. * @package EasySocial
  4. * @copyright Copyright (C) 2010 - 2014 Stack Ideas Sdn Bhd. All rights reserved.
  5. * @license GNU/GPL, see LICENSE.php
  6. * EasySocial is free software. This version may have been modified pursuant
  7. * to the GNU General Public License, and as distributed it includes or
  8. * is derivative of works licensed under the GNU General Public License or
  9. * other free or open source software licenses.
  10. * See COPYRIGHT.php for copyright notices and details.
  11. */
  12. defined( '_JEXEC' ) or die( 'Unauthorized Access' );
  13. ?>
  14. data-es-provide="popover"
  15. <?php if( $content ){ ?>
  16. data-content="<?php echo $content;?>"
  17. <?php } ?>
  18. <?php if( $title ){ ?>
  19. data-title="<?php echo $title;?>"
  20. <?php } ?>
  21. <?php if( $placement ){ ?>
  22. data-placement="<?php echo $placement;?>"
  23. <?php } ?>
  24. <?php if( $placeholder ){ ?>
  25. placeholder="<?php echo $placeholder;?>"
  26. <?php } ?>
  27. <?php if( $html ){ ?>
  28. data-html="true"
  29. <?php } ?>