summaryrefslogtreecommitdiff
path: root/plugins/GNUsocialTemplatePlugin.php
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2010-11-22 16:46:34 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2010-11-22 16:46:34 -0500
commit3e322b1c3c07726742309aa451179627592baf37 (patch)
tree4bdedf54c611e7e0327151e42ad4d5aef856caae /plugins/GNUsocialTemplatePlugin.php
parent22702160e6c74460c4937952b9a016d40503c671 (diff)
Miscellaneous plugin fixes/tweaksHEADmaster
From most important to least important: plugins/GNUsocialTemplatePlugin.php: * Modify to play nice with plain-old TemplatePlugin. * Move onPluginVersion() from action class to plugin class * Increment version from 0.1 to 0.1.1 plugins/TemplatePlugin.php: same as GNUsocialTemplatePlugin.php plugindata.php: add some output to help identify misbehaving plugins lib/implugin.php: fix comments: s/authentication/instant messaging/ lib/uapplugin.php: comments: add @see http://www.iab.net/iab_products_and_industry_services/508676/508767/UAP tpl/social.php: clean up formatting (also, use tabs instead of spaces, to be consistant with tpl/index.php)
Diffstat (limited to 'plugins/GNUsocialTemplatePlugin.php')
-rw-r--r--plugins/GNUsocialTemplatePlugin.php31
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];
}
-
+}