ure_edit_posts_access_id_list

ure_edit_posts_access_id_list filter allows to set/modify a list of posts/pages/custom post types (posts) IDs, according to which “Posts edit access” add-on will restrict the list of posts available for editing to a current user.

Example:

add_filter('ure_edit_posts_access_id_list', 'ure_edit_posts_access_set_id_list');
function ure_edit_posts_access_set_id_list($list) {
$list .= ',1584';
return $list;
}

Input parameter $list is a string, comma separated list of integers – posts IDs.