matc
Karma: 0
|
Re:Module request: Newest Glossary items - 2006/12/26 13:37
np. I also added the function to change the number of entries in the module-config. simply add in the mod_latestglos.xml the following code after :
| Code: | <params>
<param name="count" type="text" size="20" default="5" label="number of items" description="number of items to be shown" />
</params>
|
then insert in mod_latestglos.php after
| Code: | global $mosConfig_offset, $mosConfig_live_site, $mainframe;
|
the following code:
| Code: | $count = intval( $params->get( 'count', 5 ) );
|
|