Login prompt without table list

Hi,
How can I get a custom login prompt for non-logged-in users so that they can't see the table menu?
How can I get a custom login prompt for non-logged-in users so that they can't see the table menu?
Put a face on your database
http://xataface.com/forum/
function block__tables_menu_options(){
$auth =& Dataface_AuthenticationTool::getInstance();
if ( $auth->isLoggedIn() ){
return PEAR::raiseError("Just use the default");
}
return true;
}