diff options
author | Sebastian Egbers <sebastian@egbers.info> | 2012-06-26 08:33:41 +0200 |
---|---|---|
committer | Sebastian Egbers <sebastian@egbers.info> | 2012-06-26 08:33:41 +0200 |
commit | 0f0fb2e2f3b9819e4f1b65c3ea1b96e78c008381 (patch) | |
tree | 8f38f64f6239f1c132b0e2118a4a9b42ba801752 /include/plugin.php | |
parent | 8c251aebc77a6daacfe20598fc861df4c243a726 (diff) | |
parent | a4b407eb54c67a0c9b8137b44fbd20b43eccb224 (diff) | |
download | volse-hubzilla-0f0fb2e2f3b9819e4f1b65c3ea1b96e78c008381.tar.gz volse-hubzilla-0f0fb2e2f3b9819e4f1b65c3ea1b96e78c008381.tar.bz2 volse-hubzilla-0f0fb2e2f3b9819e4f1b65c3ea1b96e78c008381.zip |
Merge branch 'master' of https://github.com/friendica/friendica
Diffstat (limited to 'include/plugin.php')
-rw-r--r-- | include/plugin.php | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/include/plugin.php b/include/plugin.php index d762e8717..ffa562273 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -380,20 +380,23 @@ function service_class_fetch($uid,$property) { } -function upgrade_link() { +function upgrade_link($bbcode = false) { $l = get_config('service_class','upgrade_link'); - $t = sprintf('<a href="%s">' . t('Click here to upgrade.') . '</div>', $l); - if($l) - return $t; - return ''; + if(! $l) + return ''; + if($bbcode) + $t = sprintf('[url=%s]' . t('Click here to upgrade.') . '[/url]', $l); + else + $t = sprintf('<a href="%s">' . t('Click here to upgrade.') . '</div>', $l); + return $t; } -function upgrade_message() { - $x = upgrade_link(); +function upgrade_message($bbcode = false) { + $x = upgrade_link($bbcode); return t('This action exceeds the limits set by your subscription plan.') . (($x) ? ' ' . $x : '') ; } -function upgrade_bool_message() { - $x = upgrade_link(); +function upgrade_bool_message($bbcode = false) { + $x = upgrade_link($bbcode); return t('This action is not available under your subscription plan.') . (($x) ? ' ' . $x : '') ; } |