Đối với Joomla 1.5.x
Mở file chứa template của bạn, chẳng hạn "\templates\thuvientapchi\index.php", xác định chỗ mà bạn muốn thêm một vị trí module mới và đặt vào đoạn mã sau:<?php if ($this->countModules('thuvien_new_position')) : ?>
<div>
<jdoc:include type="modules" name="thuvien_new_position" style="xhtml" />
</div>
<?php endif; ?>
Tiếp theo, mở file "\templates\thuvientapchi\templateDetails.xml", thêm vào mục <positions></positions> đoạn mã sau:<div>
<jdoc:include type="modules" name="thuvien_new_position" style="xhtml" />
</div>
<?php endif; ?>
<position>thuvien_new_position</position>
Trong đó thuộc tính "style" có thể là: rounded, none, table, horz, xhtml, outline
Đối với Joomla 1.0.x
Mở file chứa template của bạn, chẳng hạn "\templates\thuvientapchi\index.php", xác định chỗ mà bạn muốn thêm một vị trí module mới và đặt vào đoạn mã sau:<?php if (mosCountModules('thuvien_new_position')>0) { ?>
<?php mosLoadModules('thuvien_new_position',-2); ?>
<?php } ?>
<?php mosLoadModules('thuvien_new_position',-2); ?>
<?php } ?>
Trong đó tham số thứ hai của hàm mosLoadModules là một trong 5 số nguyên: 1 = horizontal, 0 = normal, -1 = raw, -2 = XHTML và -3 = extra divs.
0 comments: