56 $ids = array_map(
'intval', preg_split(
'/\n/', $value, -1, PREG_SPLIT_NO_EMPTY ) );
57 $pageRecords = $this->getPageStore()
58 ->newSelectQueryBuilder()
59 ->wherePageIds( $ids )
60 ->caller( __METHOD__ )
62 return implode(
"\n", array_map(
function ( $pageRecord ) {
63 return $this->getTitleFormatter()->getPrefixedText( $pageRecord );
64 }, iterator_to_array( $pageRecords ) ) );