Jump to content

Gmna kalau saya pengen menempatkan modul di footer ?


Recommended Posts

itu karena modulnya tidak terdaftar di hook yang dimaksud, jadi ga sembarang bisa geser2. biar bisa nempel di footer, modif aja file php modulnya. di fungsi install, tambahin, misal * perhatiin yg registerhook('footer')

 

 

if (!$this->registerHook('footer') OR !$this->registerHook('leftColumn')  OR !$this->registerHook('rightColumn'))
return false;

 

terakhir, tambahkan fungsi baru

 

 

function hookFooter($params)
{
return $this->hookLeftColumn($params);
}

 

kode diatas templatenya ambil dari hookLeftColumn, tapi bisa aja bikin template baru khusus buat footer.

Link to comment
Share on other sites

sebelumnya terimakasih mas,

cuman ane nggak gudeng ikie.

ane simpannya di file+extenstionnya apa mas klo kode ini :

if (!$this->registerHook('footer') OR !$this->registerHook('leftColumn') OR !$this->registerHook('rightColumn'))

return false;

trus yang ini juga :

function hookFooter($params)

{

return $this->hookLeftColumn($params);

}

dan ini maksudnya gimana :

kode diatas templatenya ambil dari hookLeftColumn, tapi bisa aja bikin template baru khusus buat footer.

heheh sorry ngrepotin ??

Link to comment
Share on other sites

1. di file .php nya modul yg mau dimodif om.

2. waktu dijalanin kan dia load template, kode diatas dia load template yg sama dengan yg di sidebar. nah kali buat footer agan mo bikin/beda sendiri, jadi kyk gini

 

 

function hookFooter($params)
{
return $this->display(__FILE__, 'templatedifooter.tpl');
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...