diff options
Diffstat (limited to 'plugins/GNUsocialTemplatePlugin.php')
-rw-r--r-- | plugins/GNUsocialTemplatePlugin.php | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/plugins/GNUsocialTemplatePlugin.php b/plugins/GNUsocialTemplatePlugin.php index 7db2f73a8..1287727aa 100644 --- a/plugins/GNUsocialTemplatePlugin.php +++ b/plugins/GNUsocialTemplatePlugin.php @@ -21,9 +21,9 @@ if (!defined('STATUSNET')) { exit(1); } -define('TEMPLATEPLUGIN_VERSION', '0.1'); +define('GNUSOCIAL_TEMPLATEPLUGIN_VERSION', '0.1.1'); -class TemplatePlugin extends Plugin { +class GNUsocialTemplatePlugin extends Plugin { var $blocks = array(); @@ -253,6 +253,17 @@ class TemplatePlugin extends Plugin { $act->xw->setIndent(true); } + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'Template', + 'version' => GNUSOCIAL_TEMPLATEPLUGIN_VERSION, + 'author' => 'Brian Hendrickson', + 'homepage' => 'http://status.net/wiki/Plugin:Template', + 'rawdescription' => + _m('Use an HTML template for Web output.')); + return true; + } + } /** @@ -269,7 +280,7 @@ class TemplatePlugin extends Plugin { * */ -class TemplateAction extends Action +class GNUsocialTemplateAction extends Action { function prepare($args) { @@ -324,16 +335,6 @@ class TemplateAction extends Action } } - function onPluginVersion(&$versions) - { - $versions[] = array('name' => 'Template', - 'version' => TEMPLATEPLUGIN_VERSION, - 'author' => 'Brian Hendrickson', - 'homepage' => 'http://status.net/wiki/Plugin:Template', - 'rawdescription' => - _m('Use an HTML template for Web output.')); - return true; - } } @@ -350,10 +351,10 @@ class TemplateAction extends Action * @link http://megapump.com/ * */ - +if (!function_exists('section')) { function section($tagname) { global $tags; if (isset($tags[$tagname])) return $tags[$tagname]; } - +} |