flag.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * Plugin Icons: Flag 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_flag extends syntax_plugin_icons_icon {
  13. protected $pattern = '{{flag>.+?}}';
  14. const IS_ICON = true;
  15. public static function makePath($icon, $size, $base_url) {
  16. if ($translation = plugin_load('helper', 'translation')) {
  17. $translation_url = rtrim(DOKU_BASE, '/') . '/lib/plugins/translation/flags';
  18. $translation_path = rtrim(DOKU_PLUGIN, '/') . '/translation/flags';
  19. if (file_exists("$translation_path/$icon.gif")) {
  20. return "$translation_url/$icon.gif";
  21. }
  22. if (file_exists("$translation_path/more/$icon.gif")) {
  23. return "$translation_url/more/$icon.gif";
  24. }
  25. }
  26. return "$base_url/$icon-icon.png";
  27. }
  28. }