Files
luos/gulliver/bin/tasks/templates/skinPluginClass.tpl
2011-09-05 12:47:25 -04:00

20 lines
283 B
Smarty
Executable File

<?php
/**
* class.{className}.php
*
*/
class {className}Class extends PMPlugin {
function __construct ( ) {
set_include_path(
PATH_PLUGINS . '{className}' . PATH_SEPARATOR .
get_include_path()
);
}
function setup()
{
}
}