Friday, April 27, 2012

Edit Header Navigasi

hapus aja bagian $body = theme('menu_top'); di file common/theme.php

Code:
.....
function theme_page($title, $content) {
        $body = theme('menu_top');
.....
Trus bikin function baru lagi di common/theme.php. Misal
Code:
.....
function theme_google_analytics() {
        global $GA_ACCOUNT;
        if (!$GA_ACCOUNT) return '';
        $googleAnalyticsImageUrl = googleAnalyticsGetImageUrl();
        return "<img src='{$googleAnalyticsImageUrl}' />";
} 

function theme_mikarai() {
        $out = '<div class="menu"><center><a href="">Home</a> | <a href="/replies">Replies</a> | <a href="/search">Search</a> | <a href="/directs">Directs</a></div>';
    return $out;
} 
Jadi function theme_page seperti ini
Code:
.....
function theme_page($title, $content) {
         if (user_is_authenticated()) {
               $body = theme('mikarai');
        }
        $body .= $content;
.....
.....
Gunanya if (user_is_authenticated()) supaya menu itu gak muncul sebelum agan login.

0 comments:

Post a Comment

 

Copyright © Zaki's Blog.

Managed by FHMZK