index.php 702 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Controller for example date plugin.
  4. *
  5. * @package chamilo.plugin.share_buttons
  6. */
  7. echo '
  8. <div class="well well-sm">
  9. <!-- AddThis Button BEGIN -->
  10. <div class="addthis_toolbox addthis_default_style '.$plugin_info['icon_class'].'">
  11. <a class="addthis_button_preferred_1"></a>
  12. <a class="addthis_button_preferred_2"></a>
  13. <a class="addthis_button_preferred_3"></a>
  14. <a class="addthis_button_preferred_4"></a>
  15. <a class="addthis_button_compact"></a>
  16. <a class="addthis_counter addthis_bubble_style"></a>
  17. </div>
  18. <!-- AddThis Button END -->
  19. </div>
  20. <script type="text/javascript" src="//s7.addthis.com/js/250/addthis_widget.js"></script>
  21. ';