aboutsummaryrefslogtreecommitdiffstats
path: root/include/plugin.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-06-25 03:25:06 -0700
committerfriendica <info@friendica.com>2012-06-25 03:25:06 -0700
commit7ea5917bf794c431fe304fa25380f19a6927cf63 (patch)
tree92324c19bb13025d8f2f0087212348a039acbec6 /include/plugin.php
parent35a098e0dc7940974132d8d65bbc4418d92fb204 (diff)
downloadvolse-hubzilla-7ea5917bf794c431fe304fa25380f19a6927cf63.tar.gz
volse-hubzilla-7ea5917bf794c431fe304fa25380f19a6927cf63.tar.bz2
volse-hubzilla-7ea5917bf794c431fe304fa25380f19a6927cf63.zip
more service class functionality
Diffstat (limited to 'include/plugin.php')
-rw-r--r--include/plugin.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/plugin.php b/include/plugin.php
index e8fec4cbe..d762e8717 100644
--- a/include/plugin.php
+++ b/include/plugin.php
@@ -392,3 +392,8 @@ function upgrade_message() {
$x = upgrade_link();
return t('This action exceeds the limits set by your subscription plan.') . (($x) ? ' ' . $x : '') ;
}
+
+function upgrade_bool_message() {
+ $x = upgrade_link();
+ return t('This action is not available under your subscription plan.') . (($x) ? ' ' . $x : '') ;
+}