Check if you are in Admin area

Simple piece of code for checking are you on admin area or on frontend

<?php 

if (Mage::app()->getStore()->isAdmin()) {
    // your are on admin area
} else {
    // you are on frontend
}

 

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.