Skip to content

Commit

Permalink
Merge pull request #1145 from nazmulch11/patch-11
Browse files Browse the repository at this point in the history
plugin security user Role deffination added
  • Loading branch information
zonayedpca authored Oct 28, 2024
2 parents 0750590 + d303af5 commit 48ab4d7
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion data/wordpress-plugin-development.json
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,29 @@
},
{
"title": "প্লাগইন সিকিউরিটি (ইউসার রোলেস)",
"items": [{
"items": [
{
"definition": "নতুন ইউসার রোল তৈরির জন্য",
"code": "add_role( string $role, string $display_name, array $capabilities = array() )"
},
{
"definition": "একটি ইউসার রোল সরানোর জন্য",
"code": "remove_role( string $role )"
},
{
"definition": "একটি রোলের তথ্য পেতে",
"code": "get_role( string $role )"
},
{
"definition": "কোনো রোলের জন্য নতুন ক্যাপাবিলিটি যোগ করার জন্য",
"code": "add_cap( string $role, string $cap, bool $grant = true )"
}
]
},
{
"title": "প্লাগইন সিকিউরিটি (ইউসার রোলেস)",
"items": [
{
"code": "add_role()",
"definition": "ইউসার রোল যোগ করুন"
},
Expand All @@ -326,6 +348,18 @@
{
"code": "current_user_can()",
"definition": "বর্তমান ইউসার করতে পারে"
},
{
"definition": "একটি রোল থেকে ক্যাপাবিলিটি সরানোর জন্য",
"code": "remove_cap( string $role, string $cap )"
},
{
"definition": "নির্দিষ্ট একজন ইউসার কোনো কাজ করতে পারবে কিনা তা যাচাইয়ের জন্য",
"code": "user_can( WP_User $user, string $capability )"
},
{
"definition": "বর্তমান ইউসার কোনো নির্দিষ্ট কাজ করতে পারে কিনা যাচাইয়ের জন্য",
"code": "current_user_can( string $capability )"
}
]
},
Expand Down

0 comments on commit 48ab4d7

Please sign in to comment.