glyphicon.php 475 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Plugin Icons: Glyphicons helper
  4. *
  5. * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
  6. * @author Giuseppe Di Terlizzi <giuseppe.diterlizzi>
  7. * @copyright (C) 2015, Giuseppe Di Terlizzi
  8. */
  9. // must be run within Dokuwiki
  10. if(!defined('DOKU_INC')) die();
  11. require_once(dirname(__FILE__).'/icon.php');
  12. class syntax_plugin_icons_glyphicon extends syntax_plugin_icons_icon {
  13. protected $pattern = '{{glyphicon>.+?}}';
  14. const IS_ICON = false;
  15. }