Files
luos/gulliver/bin/tasks/templates/skinPluginClass.tpl

20 lines
283 B
Smarty
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?php
/**
* class.{className}.php
*
*/
class {className}Class extends PMPlugin {
function __construct ( ) {
set_include_path(
PATH_PLUGINS . '{className}' . PATH_SEPARATOR .
get_include_path()
);
}
function setup()
{
}
}