35 parent::__construct(
'Booksources' );
50 $isbn = $isbn ?: $this->
getRequest()->getText(
'isbn' );
51 $isbn = trim( $isbn );
56 if ( !self::isValidISBN( $isbn ) ) {
58 "<div class=\"error\">\n$1\n</div>",
59 'booksources-invalid-isbn'
76 if ( strlen( $isbn ) == 13 ) {
77 for ( $i = 0; $i < 12; $i++ ) {
78 if ( $isbn[$i] ===
'X' ) {
80 } elseif ( $i % 2 == 0 ) {
83 $sum += 3 * $isbn[$i];
87 $check = ( 10 - ( $sum % 10 ) ) % 10;
88 if ( (
string)$check === $isbn[12] ) {
91 } elseif ( strlen( $isbn ) == 10 ) {
92 for ( $i = 0; $i < 9; $i++ ) {
93 if ( $isbn[$i] ===
'X' ) {
96 $sum += $isbn[$i] * ( $i + 1 );
100 if ( $check == 10 ) {
103 if ( (
string)$check === $isbn[9] ) {
118 return trim( preg_replace(
'![^0-9X]!',
'', $isbn ) );
131 'label-message' =>
'booksources-isbn',
141 ->setWrapperLegendMsg(
'booksources-search-legend' )
142 ->setSubmitTextMsg(
'booksources-search' )
145 ->displayForm(
false );
160 # Hook to allow extensions to insert additional HTML,
161 # e.g. for API-interacting plugins and so on
162 Hooks::run(
'BookInformation', [ $isbn,
$out ] );
164 # Check for a local page such as Project:Book_sources and use that if available
165 $page = $this->
msg(
'booksources' )->inContentLanguage()->text();
175 $out->addWikiText( str_replace(
'MAGICNUMBER', $isbn, $text ) );
179 throw new MWException(
"Unexpected content type for book sources: " .
$content->getModel() );
183 # Fall back to the defaults given in the language file
184 $out->addWikiMsg(
'booksources-text' );
185 $out->addHTML(
'<ul>' );
186 $items = MediaWikiServices::getInstance()->getContentLanguage()->getBookstoreList();
187 foreach ( $items
as $label => $url ) {
190 $out->addHTML(
'</ul>' );
204 $url = str_replace(
'$1', $isbn, $url );
206 return Html::rawElement(
'li', [],
207 Html::element(
'a', [
'href' => $url,
'class' =>
'external' ], $label )
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
An IContextSource implementation which will inherit context from another source but allow individual ...
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
Special page outputs information on sourcing a book with a particular ISBN The parser creates links t...
static cleanIsbn( $isbn)
Trim ISBN and remove characters which aren't required.
buildForm( $isbn)
Generate a form to allow users to enter an ISBN.
static isValidISBN( $isbn)
Return whether a given ISBN (10 or 13) is valid.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
execute( $isbn)
Show the special page.
showList( $isbn)
Determine where to get the list of book sources from, format and output them.
makeListItem( $isbn, $label, $url)
Format a book source list item.
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getContext()
Gets the context this SpecialPage is executed in.
msg( $key)
Wrapper around wfMessage that sets the current context.
getRequest()
Get the WebRequest being used for this instance.
getPageTitle( $subpage=false)
Get a self-referential title object.
Content object implementation for representing flat text.
per default it will return the text for text based content
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead & $formDescriptor
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
namespace and then decline to actually register it file or subcat img or subcat $title
null for the local wiki Added in
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php