Category: Advertisement

  • RIVER Collection launch: Latest styles On Amazon

    RIVER Collection launch: Latest styles RIVER Collection launch: Latest styles from your favourite designers | Made for Amazon | Up to 20% off – Launching on 1st Dec. Ends: On-going Brands & Products, Fashion RIVER Collection launch: Latest styles from your favourite designers | Made for Amazon | Up to 20% off Buy Now

  • Earn from Amazon Prime Video

    Paid Prime Membership on Primevideo.com Paid Prime Membership on Primevideo.com Ends: On-going Bounties, Prime Video “Prime Video bounty program – Earn 100 on every prime membership” Buy Now

  • Earn from Amazon Prime Music

    Amazon Prime Music bounty Amazon Prime Music bounty Ends: On-going Bounties, Music Earn a bounty for every eligible Prime Music First Stream Buy Now

  • Amazon Electronic Items Mega Sale

    boAt Mega Electronic Day Deals on Headphones and Speakers Deals of the Days ₹299.00 – ₹4,299.00 boAt Mega Electronic Day Deals on Headphones and Speakers Buy Now

  • Air hockey and others games

    Air hockey and others games available for rent! Get your self ready for action packed arcade style game and The perfect way to spend times with friend and family at home #eventplanner#birthdayplanner#birthdaygames #eventplanning#eventgames#airhockey#airhockeytable #airhockeygame#eventdecorations#birthdaydecoration #familytime#familygames

  • Balloon Printing

    Hello Everyone! We are glad to inform you that now we also started “Balloon Printing” along with Games & Decoration. Because it is our endeavor that we can fulfill all your needs under one roof. Balloon Printing Service, Balloon Printing Service in Delhi, Balloon Printing Service in Delhi NCR, Online Balloon Printing Service, Online Order…

  • Get your Insta EMI Card of BAJAJFINSERV

    Get your Insta EMI Card of BAJAJFINSERV Complete the 3-step process and convert your purchases into No Cost EMIs Dear, Your EMI card with limit of Rs. 1,98,900 can be Approved and Delivered at home, Confirm dispatch address Why get Insta EMI card from Bajaj Finserv?

  • BDS Services Pvt Ltd.

    We are here to assist you in the following types of services to your venture and grow your business:- If you have any Requirements for Legal Services please contact on ( BDS Services Pvt Ltd ) 1) Trademark Registration & Logo copyright Registration2) FSSAI License3) ISO Certification (9001:2015 , 13485 , 14001 , 45001, 22000…

  • Htaccess for speed up wordpress , drupal, opencart , all cms website

    Htaccess for speed up wordpress , drupal, opencart , all cms website # compress text, HTML, JavaScript, CSS, and XMLAddOutputFilterByType DEFLATE text/plainAddOutputFilterByType DEFLATE text/htmlAddOutputFilterByType DEFLATE text/xmlAddOutputFilterByType DEFLATE text/cssAddOutputFilterByType DEFLATE application/xmlAddOutputFilterByType DEFLATE application/xhtml+xmlAddOutputFilterByType DEFLATE application/rss+xmlAddOutputFilterByType DEFLATE application/javascriptAddOutputFilterByType DEFLATE application/x-javascript # remove browser bugsBrowserMatch ^Mozilla/4 gzip-only-text/htmlBrowserMatch ^Mozilla/4\.0[678] no-gzipBrowserMatch \bMSIE !no-gzip !gzip-only-text/htmlHeader append Vary User-Agent # Turn on…

  • how to print user role in drupal 7 | render menu

    how to print user role in drupal 7 | render menu <?phpglobal $user;print_r( $user->roles);//in_array(array(‘authenticated user’, ‘anonymous user’), $user->roles)if (in_array(‘authenticated user’, $user->roles)) {//do stuff here} $menu = menu_tree(‘menu-admin-form’);$menuhtml = drupal_render($menu); foreach($menu as $mm => $mmm){//echo $mmm;} print_r($menuhtml);?> <?php$menu = menu_tree(‘menu-admin-form’);$menuhtml = drupal_render($menu);print_r($menuhtml); $block = module_invoke(‘menu’, ‘block_view’, ‘menu-admin-form’);print render($block[‘content’]);?> <?php $main_menu_tree = menu_tree_all_data(‘menu-admin-form’); ?><?php $main_menu_expanded = menu_tree_output($main_menu_tree);?>…