TitleParser.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /**
  3. * A title parser service for %MediaWiki.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. * http://www.gnu.org/copyleft/gpl.html
  19. *
  20. * @file
  21. * @author Daniel Kinzler
  22. */
  23. /**
  24. * A title parser service for %MediaWiki.
  25. *
  26. * This is designed to encapsulate knowledge about conventions for the title
  27. * forms to be used in the database, in urls, in wikitext, etc.
  28. *
  29. * @see https://www.mediawiki.org/wiki/Requests_for_comment/TitleValue
  30. * @since 1.23
  31. */
  32. interface TitleParser {
  33. /**
  34. * Parses the given text and constructs a TitleValue.
  35. *
  36. * @note this only parses local page links, interwiki-prefixes etc. are not considered!
  37. *
  38. * @param string $text The text to parse
  39. * @param int $defaultNamespace Namespace to assume per default (usually NS_MAIN)
  40. *
  41. * @throws MalformedTitleException If the text is not a valid representation of a page title.
  42. * @return TitleValue
  43. */
  44. public function parseTitle( $text, $defaultNamespace = NS_MAIN );
  45. /**
  46. * Given a namespace and title, return a TitleValue if valid, or null if invalid.
  47. *
  48. * @param int $namespace
  49. * @param string $text
  50. * @param string $fragment
  51. * @param string $interwiki
  52. *
  53. * @return TitleValue|null
  54. */
  55. public function makeTitleValueSafe( $namespace, $text, $fragment = '', $interwiki = '' );
  56. }