Joomla Geliştirici Kılavuzu/Gelişmiş Tema Oluşturma
Görünüm
Bu sayfa başka bir dilden çevrilmektedir.
Çekingen davranmayın:
|
Tanıtım
[değiştir]This chapter includes some more advanced features such as hiding template columns and designing templates for the Administrator.
Hiding Modules Sometimes it is desirable to hide certain module areas if there are no modules assigned to that region. You can hide these areas by using the mosCountModules function.
<?php if (mosCountModules( 'right' )) { ?>
- <td>
- <?php mosLoadModules( 'right' ); ?>
- </td>
<?php } ?>
If the mosCountModules function returns a value greater than 1, the table cell will be displayed. If there are no modules defined for the "right" position for this particular page, then the cell will not be displayed. This is a good technique for increasing the horizontal screen width on certain pages.
Using Class Suffixes
Todo