getNamespace() === NS_MEDIAWIKI ) { $dbkey = $title->getDBkey(); return wfEmptyMsg( $dbkey ) ? '' : wfMsgExt( $dbkey, 'content' ); } if ( !$title->isCssJsSubpage() ) { return null; } $revision = Revision::newFromTitle( $title ); if ( !$revision ) { return null; } return $revision->getRawText(); } /* Methods */ public function getScript( ResourceLoaderContext $context ) { $scripts = ''; foreach ( $this->getPages( $context ) as $titleText => $options ) { if ( $options['type'] !== 'script' ) { continue; } $title = Title::newFromText( $titleText ); if ( !$title ) { continue; } $script = $this->getContent( $title ); if ( strval( $script ) !== '' ) { if ( strpos( $titleText, '*/' ) === false ) { $scripts .= "/* $titleText */\n"; } $scripts .= $script . "\n"; } } return $scripts; } public function getStyles( ResourceLoaderContext $context ) { $styles = array(); foreach ( $this->getPages( $context ) as $titleText => $options ) { if ( $options['type'] !== 'style' ) { continue; } $title = Title::newFromText( $titleText ); if ( !$title ) { continue; } $media = isset( $options['media'] ) ? $options['media'] : 'all'; $style = $this->getContent( $title ); if ( strval( $style ) === '' ) { continue; } if ( $this->getFlip( $context ) ) { $style = CSSJanus::transform( $style, true, false ); } if ( !isset( $styles[$media] ) ) { $styles[$media] = ''; } if ( strpos( $titleText, '*/' ) === false ) { $styles[$media] .= "/* $titleText */\n"; } $styles[$media] .= $style . "\n"; } return $styles; } public function getModifiedTime( ResourceLoaderContext $context ) { $hash = $context->getHash(); if ( isset( $this->modifiedTime[$hash] ) ) { return $this->modifiedTime[$hash]; } $batch = new LinkBatch; foreach ( $this->getPages( $context ) as $titleText => $options ) { $batch->addObj( Title::newFromText( $titleText ) ); } $modifiedTime = 1; // wfTimestamp() interprets 0 as "now" if ( !$batch->isEmpty() ) { $dbr = wfGetDB( DB_SLAVE ); $latest = $dbr->selectField( 'page', 'MAX(page_touched)', $batch->constructSet( 'page', $dbr ), __METHOD__ ); if ( $latest ) { $modifiedTime = wfTimestamp( TS_UNIX, $latest ); } } $this->modifiedTime[$hash] = $modifiedTime; return $modifiedTime; } }