Trong khi viết mods chúng ta cần hook templates để làm auto chèn templates vào templates của vbulletin.

Vậy code làm sao đây [Only registered and activated users can see links. ]

Ví dụ ta tạo 1 templates có tên là templates_thongbaoandquangcao

Và mình muốn chèn nó vào templates headinclude của vbulletin.

Code hook ở vbulletin 4:

vB_Template::create('templates_thongbaoandquangcao ')->render();


Và Hook templates headinclude:

<hookname>process_templates_complete</hookname>


$headinclude .= vB_Template::create('templates_thongbaoandquangcao ')->render();
OK! vậy là ta đã chèn được đoạn code trong templates templates_thongbaoandquangcao vào templates headinclude của vbulletin rồi [Only registered and activated users can see links. ]

Vậy còn ở vbulletin 3 thì sao nào ^^!

Ví dụ: tôi vừa tạo có tên là taokeywords_template và tôi muốn chèn code trong templates đó vào trong templates postbit thì phải sao [Only registered and activated users can see links. ]

À đây rồi [Only registered and activated users can see links. ]

ta Hook Name :

Code:

<hookname>postbit_display_complete</hookname>



Và viết code :

eval('$template_hook[postbit_end] .= " ' . fetch_template('taokeywords_template') . '";');






Code:
$template_hook[postbit_end]


=> đây là biến trong templates postbit nó giúp code chúng ta sẽ hiển thị bên dưới bài viết [Only registered and activated users can see links. ]

OK! thế là xong rồi ^^!

Chúc các bạn thành công.