index.php 699 B

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