Y yo3083 New Member YetiShare User Oct 8, 2013 10 0 0 May 8, 2014 #1 Please can tell to me what is the equivalent to this, but for when user is authenticated and if user is premium user? Code: <?php if ($Auth->loggedIn() == true): ?> //do something <?php endif; ?>
Please can tell to me what is the equivalent to this, but for when user is authenticated and if user is premium user? Code: <?php if ($Auth->loggedIn() == true): ?> //do something <?php endif; ?>
Y ysmods New Member Jan 29, 2013 860 1 0 UK www.ysmods.com May 8, 2014 #2 Code: <?php if ($Auth->hasAccessLevel(2)): ?> // do something <?php endif; ?>