' . t('Bookmarks App') . ' (' . t('Not Installed') . '):
';
			$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 .= '
';
	
		$o .= '
' . t('My Bookmarks') . '
';
	
		$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 .= '' . t('My Connections Bookmarks') . '
';
	
	
		$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 .= '';
	
		return $o;
	
	}
	
	
}