diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-15 18:48:27 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-03-15 18:48:27 -0700 |
commit | 664c762b35d894b6c055eb57a72f01dae97b48c3 (patch) | |
tree | a6e6865f4849539112bb1fffb505c1f1e1f1fe75 /Zotlabs/Widget/Follow.php | |
parent | 9cb9608209ab5f9fb123acc82a563ba54c450db1 (diff) | |
download | volse-hubzilla-664c762b35d894b6c055eb57a72f01dae97b48c3.tar.gz volse-hubzilla-664c762b35d894b6c055eb57a72f01dae97b48c3.tar.bz2 volse-hubzilla-664c762b35d894b6c055eb57a72f01dae97b48c3.zip |
more widgets
Diffstat (limited to 'Zotlabs/Widget/Follow.php')
-rw-r--r-- | Zotlabs/Widget/Follow.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Zotlabs/Widget/Follow.php b/Zotlabs/Widget/Follow.php new file mode 100644 index 000000000..c4aecc8e1 --- /dev/null +++ b/Zotlabs/Widget/Follow.php @@ -0,0 +1,37 @@ +<?php + +namespace Zotlabs\Widget; + + +class Follow { + + function widget($args) { + if(! local_channel()) + return ''; + + $uid = \App::$channel['channel_id']; + $r = q("select count(*) as total from abook where abook_channel = %d and abook_self = 0 ", + intval($uid) + ); + + 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 channel address'), + '$hint' => t('Examples: bob@example.com, https://example.com/barbara'), + '$follow' => t('Connect'), + '$abook_usage_message' => $abook_usage_message + )); + } +} + |