Page lists - filter by user

Permalink
I want to filter a page list by users that own (added) the page, I've been round the houses looking for a starting point in the documentation but can't seem to find anything.

Anyone got any pointers?

ali7566
 
ramonleenders replied on at Permalink Reply
ramonleenders
Use the function "filterByUserID"?

$pl = new PageList();
$pl->filterByUserID(123); // User ID here of course
$pagination = $pl->getPagination();
$pages = $pagination->getCurrentPageResults();
ali7566 replied on at Permalink Reply
ali7566
perfect, I'll give it a go. thanks