Plugin 'User CP navigation':
PHP Code:
if ($vbulletin->userinfo['permissions']['ptpermissions'] & $vbulletin->bf_ugp_ptpermissions['canviewprojecttools'])
{
if (in_array(THIS_SCRIPT, array('projectpost')))
{
$vbulletin->options['selectednavtab'] = 'projecttools';
}
$templater = vB_Template::create('pt_usercp_navbit');
$templater->register('navclass', $navclass);
$template_hook['usercp_navbar_bottom'] .= $templater->render();
}
Tell me if this is what you wanted