diff options
author | friendica <info@friendica.com> | 2014-02-04 16:06:56 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-04 16:06:56 -0800 |
commit | 3665bc38ef15137c7d36a12aa13a44c4d0304547 (patch) | |
tree | 7614ab347df65ca0c6712e098ffc555bdee3dc71 /mod/bookmarks.php | |
parent | 46b9352a84a684d3e419604824f99105bea1272f (diff) | |
download | volse-hubzilla-3665bc38ef15137c7d36a12aa13a44c4d0304547.tar.gz volse-hubzilla-3665bc38ef15137c7d36a12aa13a44c4d0304547.tar.bz2 volse-hubzilla-3665bc38ef15137c7d36a12aa13a44c4d0304547.zip |
bookmarking
Diffstat (limited to 'mod/bookmarks.php')
-rw-r--r-- | mod/bookmarks.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/mod/bookmarks.php b/mod/bookmarks.php new file mode 100644 index 000000000..25bf39a7a --- /dev/null +++ b/mod/bookmarks.php @@ -0,0 +1,40 @@ +<?php + +function bookmarks_content(&$a) { + if(! local_user()) { + notice( t('Permission denied.') . EOL); + return; + } + + + require_once('include/menu.php'); + + $o = '<h3>' . t('My Bookmarks') . '</h3>'; + + $x = menu_list(local_user(),'',MENU_BOOKMARK); + + if($x) { + foreach($x as $xx) { + $y = menu_fetch($xx['menu_name'],local_user(),get_observer_hash()); + $o .= menu_render($y); + } + } + + $o .= '<h3>' . t('My Connections Bookmarks') . '</h3>'; + + + $x = menu_list(local_user(),'',MENU_SYSTEM|MENU_BOOKMARK); + + if($x) { + foreach($x as $xx) { + $y = menu_fetch($xx['menu_name'],local_user(),get_observer_hash()); + $o .= menu_render($y); + } + } + + + + return $o; + +} + |