summaryrefslogtreecommitdiff
path: root/lib/plugin.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-11-11 16:51:10 -0500
committerCraig Andrews <candrews@integralblue.com>2009-11-11 16:51:10 -0500
commit1c4bacf7bcaad9b078ff1e7675371932bb76d0b3 (patch)
treecff399c34125e2725155e13f0edbf870191847ec /lib/plugin.php
parent41944f36e49086d56bded449816d62d3bd4a0c59 (diff)
Remove registerUrlShortener() (no longer used)
Diffstat (limited to 'lib/plugin.php')
-rw-r--r--lib/plugin.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/plugin.php b/lib/plugin.php
index 59bf3ba9d..87d7be5a7 100644
--- a/lib/plugin.php
+++ b/lib/plugin.php
@@ -76,18 +76,4 @@ class Plugin
{
return true;
}
-
- /*
- * the name of the shortener
- * shortenerInfo associative array with additional information. One possible element is 'freeService' which can be true or false
- * shortener array, first element is the name of the class, second element is an array to be passed as constructor parameters to the class
- */
- function registerUrlShortener($name, $shortenerInfo, $shortener)
- {
- global $_shorteners;
- if(!is_array($_shorteners)){
- $_shorteners=array();
- }
- $_shorteners[$name]=array('info'=>$shortenerInfo, 'callInfo'=>$shortener);
- }
}