Template for Wordpress plugins
To use:
-
make a copy of all files, change file name of plugintemplate.php to newpluginname.php
-
run a search and replace from plugintemplate to newpluginname in newpluginname.php, admin.css and admin.js
You can do this from the command line using the following:
grep -rl "plugintemplate" . | xargs sed -i 's/plugintemplate/newpluginname/g'