Splited access_level function in two

This commit is contained in:
Pierre
2018-01-09 06:44:34 +01:00
parent f4620717c2
commit a10c89cd5d
2 changed files with 23 additions and 1 deletions

View File

@ -33,6 +33,14 @@ class postsController {
//Get the post of the user
$posts = CS::get()->components->posts->getUserPosts(userID, $userID, $startFrom);
//Process the list of posts
foreach($posts as $num => $infos){
//Get access level to the post
$access_level = CS::get()->components->posts->access_level_with_infos($infos, userID);
}
return $posts;
}