Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

Categories

In this Discussion

Who's Online 9

CurtisOdenericgillette +7 guests

PHP tags for logged in and logged out users

I'd like to hide particular things in the panel for guests, but my PHP Knowledge is a bit limited, i've searched also in the Vanilla documentation but i had bad luck so far.

Is there somewhere a better documentation or a library of specific php tags for Vanilla?

Comments

  • Posts: 2,058
    <?php if(Gdn::Session()->CheckPermission('Garden.SignIn.Allow')) : ?>

    <!-- HTML that logged in users will see -->

    <?php else : ?>

    <!-- HTML that guests will see -->

    <?php endif; ?>

    Vanilla developer [GitHub, Twitter]

  • Posts: 29
    Thank you for your help Lincoln :-)
Sign In or Register to comment.