diff options
author | friendica <info@friendica.com> | 2013-12-09 00:12:44 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-09 00:12:44 -0800 |
commit | 00f4ee271789b61393edd384f12cda1c14af4b94 (patch) | |
tree | e8d3688a8c5e36a2b8868b138fff76aa83a8f1ef /include/widgets.php | |
parent | 77fd6e71379f78d2abb94f85ce4ad68caa7aa370 (diff) | |
download | volse-hubzilla-00f4ee271789b61393edd384f12cda1c14af4b94.tar.gz volse-hubzilla-00f4ee271789b61393edd384f12cda1c14af4b94.tar.bz2 volse-hubzilla-00f4ee271789b61393edd384f12cda1c14af4b94.zip |
migrate follow widget to comanche and remove obsolete mod/intro.php
Diffstat (limited to 'include/widgets.php')
-rw-r--r-- | include/widgets.php | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/include/widgets.php b/include/widgets.php index f152e8ee1..6e3452ac6 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -92,4 +92,33 @@ function widget_suggestions($arr) { return $o; -}
\ No newline at end of file +} + + +function widget_follow($args) { + if(! local_user()) + return ''; + $a = get_app(); + $uid =$a->channel['channel_id']; + $r = q("select count(*) as total from abook where abook_channel = %d and not (abook_flags & %d) ", + intval($uid), + intval(ABOOK_FLAG_SELF) + ); + if($r) + $total_channels = $r[0]['total']; + $limit = service_class_fetch($uid,'total_channels'); + if($limit !== false) { + $abook_usage_message = sprintf( t("You have %1$.0f of %2$.0f allowed connections."), $total_channels, $limit); + } + else { + $abook_usage_message = ''; + } + return replace_macros(get_markup_template('follow.tpl'),array( + '$connect' => t('Add New Connection'), + '$desc' => t('Enter the channel address'), + '$hint' => t('Example: bob@example.com, http://example.com/barbara'), + '$follow' => t('Connect'), + '$abook_usage_message' => $abook_usage_message + )); + +} |