mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 11:59:56 +00:00
28 lines
806 B
PHP
28 lines
806 B
PHP
<?php
|
|
class PortableInfoboxQueryService {
|
|
const MCACHE_KEY = 'unconvertedinfoboxes-list';
|
|
|
|
public static function getNonPortableInfoboxes() {
|
|
$data = WikiaDataAccess::cache( wfMemcKey( self::MCACHE_KEY ), WikiaResponse::CACHE_STANDARD, function () {
|
|
$dbr = wfGetDB( DB_SLAVE );
|
|
return ( new WikiaSQL() )
|
|
->SELECT( 'qc_value', 'qc_namespace', 'qc_title' )
|
|
->FROM( 'querycache' )
|
|
->WHERE( 'qc_type' )->EQUAL_TO( UnconvertedInfoboxesPage::UNCONVERTED_INFOBOXES_TYPE )
|
|
->run( $dbr, function ( ResultWrapper $result ) {
|
|
$out = [ ];
|
|
while ( $row = $result->fetchRow() ) {
|
|
$out[] = [
|
|
'pageid' => $row[ 'qc_value' ],
|
|
'title' => $row[ 'qc_title' ],
|
|
'ns' => $row[ 'qc_namespace' ]
|
|
];
|
|
}
|
|
return $out;
|
|
} );
|
|
} );
|
|
|
|
return $data;
|
|
}
|
|
}
|