Open the file, find
PHP Code:
if (!can_administer...)
{
print_cp_no_permission();
}
Change it as
PHP Code:
if (!can_moder)
{
print_cp_no_permission();
}
After that you can copy the file into modcp and add a link in modcop/index.php.
How you can add link?
PHP Code:
construct_nav_option('linkname', 'link');
construct_nav_group('groupname');
construct_nav_spacer();
Good luck.