You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
299 B

  1. <?php
  2. namespace dokuwiki\File;
  3. /**
  4. * Creates an absolute media ID from a relative one
  5. */
  6. class MediaResolver extends Resolver
  7. {
  8. /** @inheritDoc */
  9. public function resolveId($id, $rev = '', $isDateAt = false)
  10. {
  11. return cleanID(parent::resolveId($id, $rev, $isDateAt));
  12. }
  13. }