6
It's very easy to create plugin for a module, for example the mastop module: you creat a new file ( mastop.php), copy and paste this php code in the file:
<?php $i = 0; $pluginPatterns[$i]['key'] = '_MTP_'; $pluginPatterns[$i]['replacement'] = 'CONSTANT'; $pluginPatterns[$i]['prefix'] = '_'; $pluginPatterns[$i]['suffix'] = '_'; $i++; $pluginPatterns[$i]['key'] = 'mastop'; $pluginPatterns[$i]['replacement'] = 'modulename'; $i++; $pluginPatterns[$i]['key'] = 'MASTOP'; $pluginPatterns[$i]['replacement'] = 'MODULENAME'; $i++; ?>
And, save the file in /modules/smartclone/plugins
You can now clone the mastop module easily.
A+