Jump to content

Recommended Posts

Posted

Hi,

If I go to the pilots list I can change in the pilot callsign and I show pilot information. I want restric this acces. I want to ONLY can see this information the pilots are online or login. If I am not logued I cant see this information.

Any Idea?

Posted

Place this at the very top of any page you don't want non-members to see.

<?php
if(Auth::LoggedIn() == false)
{
  echo 'We're sorry! You must be a registered member in order to view this page';
  return;
}
?>

  • Moderators
Posted

Place this at the very top of any page you don't want non-members to see.

<?php
if(Auth::LoggedIn() == false)
{
echo 'We're sorry! You must be a registered member in order to view this page';
return;
}
?>

Jeff, found a mistake. You'll get the error if you don't back slash the '.

Cheers! ;)

<?php
if(Auth::LoggedIn() == false)
{
echo 'We\'re sorry! You must be a registered member in order to view this page';
return;
}
?>

Posted

As LoggedIn() returns a bool and the if statement evaluates as bool anyway, you can shorten it a bit:

<?php
if(!Auth::LoggedIn()){
echo "We're sorry! You must be a registered member in order to view this page";
return;
}
?>

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...