diff options
author | Mario <mario@mariovavti.com> | 2021-08-21 08:25:15 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-08-21 08:25:15 +0000 |
commit | 6eb84a3d9a9e09a12a7c30cf45844af809e8a9a3 (patch) | |
tree | 5aaff90944b1a359478a3dfa2e11fa04b681047d /Zotlabs/Module/Bookmarks.php | |
parent | 69d909596a0011ae902f834bd79251136f5d5bba (diff) | |
download | volse-hubzilla-6eb84a3d9a9e09a12a7c30cf45844af809e8a9a3.tar.gz volse-hubzilla-6eb84a3d9a9e09a12a7c30cf45844af809e8a9a3.tar.bz2 volse-hubzilla-6eb84a3d9a9e09a12a7c30cf45844af809e8a9a3.zip |
restructure apps to make space for app descritions
Diffstat (limited to 'Zotlabs/Module/Bookmarks.php')
-rw-r--r-- | Zotlabs/Module/Bookmarks.php | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/Zotlabs/Module/Bookmarks.php b/Zotlabs/Module/Bookmarks.php index 822b18308..000e2893f 100644 --- a/Zotlabs/Module/Bookmarks.php +++ b/Zotlabs/Module/Bookmarks.php @@ -18,31 +18,31 @@ class Bookmarks extends \Zotlabs\Web\Controller { $item_id = (isset($_REQUEST['item']) ? $_REQUEST['item'] : false); $burl = (isset($_REQUEST['burl']) ? trim($_REQUEST['burl']) : ''); - + if(! $item_id) return; - + $u = \App::get_channel(); - + $item_normal = item_normal(); - + $i = q("select * from item where id = %d and uid = %d $item_normal limit 1", intval($item_id), intval(local_channel()) ); - + if(! $i) return; - + $i = fetch_post_tags($i); - + $item = $i[0]; - + $terms = (x($item, 'term') ? get_terms_oftype($item['term'],TERM_BOOKMARK) : false); - + if($terms) { require_once('include/bookmarks.php'); - + $s = q("select * from xchan where xchan_hash = '%s' limit 1", dbesc($item['author_xchan']) ); @@ -58,13 +58,13 @@ class Bookmarks extends \Zotlabs\Web\Controller { } else bookmark_add($u,$s[0],$t,$item['item_private']); - + info( t('Bookmark added') . EOL); } } killme(); } - + function get() { if(! local_channel()) { notice( t('Permission denied.') . EOL); @@ -79,44 +79,44 @@ class Bookmarks extends \Zotlabs\Web\Controller { $o .= t('Bookmark links from posts and manage them'); return $o; } - + require_once('include/menu.php'); require_once('include/conversation.php'); - + $channel = \App::get_channel(); - + $o = ''; - + $o .= '<div class="generic-content-wrapper-styled">'; - + $o .= '<h3>' . t('My Bookmarks') . '</h3>'; - + $x = menu_list(local_channel(),'',MENU_BOOKMARK); - + if($x) { foreach($x as $xx) { $y = menu_fetch($xx['menu_name'],local_channel(),get_observer_hash()); $o .= menu_render($y,'',true); } } - + $o .= '<h3>' . t('My Connections Bookmarks') . '</h3>'; - - + + $x = menu_list(local_channel(),'',MENU_SYSTEM|MENU_BOOKMARK); - + if($x) { foreach($x as $xx) { $y = menu_fetch($xx['menu_name'],local_channel(),get_observer_hash()); $o .= menu_render($y,'',true); } } - + $o .= '</div>'; - + return $o; - + } - - + + } |