ugh, no wonder the new xmlrpc wouldn't post anything

git-svn-id: http://svn.automattic.com/wordpress/trunk@1630 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
michelvaldrighi 2004-09-09 15:54:03 +00:00
parent b036c6d58d
commit 85b23fe964
1 changed files with 9 additions and 0 deletions

View File

@ -321,6 +321,15 @@ function trackback_url_list($tb_list, $post_id) {
// query user capabilities
/* returns true if a given $user_id can create a new post.
note: optional $blog_id and $category_id for future usage? */
function user_can_create_post($user_id, $blog_id = 1, $category_id = 'None') {
// rather simplistic. shall evolve with future permission system overhaul
$author_data = get_userdata($user_id);
return ($author_data->user_level > 1);
}
/* returns true if a given $user_id can edit a given $post_id.
note: optional $blog_id for future usage? */
function user_can_edit_post($user_id, $post_id, $blog_id = 1) {