Difference between revisions of "How to make part of theme visible only to administrators"

From JReviews Documentation
Jump to: navigation, search
(Created page with '<source lang="php"> <?php if($this->Access->isAdmin():?> // Everything here will be available only to admins <?php endif;?> </source> Category:JReviews [[Category:Theme…')
(No difference)

Revision as of 20:35, 4 November 2009

<?php if($this->Access->isAdmin():?>
   // Everything here will be available only to admins
<?php endif;?>