In integrating KFM with CKeditor with Wordpress, I want to block access unless the user is logged in as an admin but without having to specify a name and password again.
Once I set the condition to determine if the person should have access, is simply adding to configuration.php the code:
if ( !$allow ) { exit ("Not Allowed"); }
sufficient to prevent unwanted access?
What about kfm_admin_check()? does that need to be specifically set if the above code is in use?
P.S. I think something like kfm_admin_check() for access to KFM with username/password as one option would be a nice addition.