42 $ids = array_map(
'intval', preg_split(
'/\n/', $value, -1, PREG_SPLIT_NO_EMPTY ) );
43 $pageRecords = $this->getPageStore()
44 ->newSelectQueryBuilder()
45 ->wherePageIds( $ids )
46 ->caller( __METHOD__ )
48 return implode(
"\n", array_map(
function ( $pageRecord ) {
49 return $this->getTitleFormatter()->getPrefixedText( $pageRecord );
50 }, iterator_to_array( $pageRecords ) ) );