diff --git a/api/export_gcs.php b/api/export_gcs.php new file mode 100644 index 0000000..9cf34f7 --- /dev/null +++ b/api/export_gcs.php @@ -0,0 +1,40 @@ +isAdmin($userservice->getCurrentUserId())) { + die(T_('You are not allowed to do this action (admin access)')); +}*/ + + + +// Check to see if a tag was specified. +if (isset($_REQUEST['tag']) && (trim($_REQUEST['tag']) != '')) + $tag = trim($_REQUEST['tag']); +else + $tag = NULL; + +// Get the posts relevant to the passed-in variables. +$bookmarks =& $bookmarkservice->getBookmarks(0, NULL, NULL, $tag, NULL, getSortOrder()); + +$currentuser = $userservice->getCurrentUser(); +$currentusername = $currentuser[$userservice->getFieldName('username')]; + +// Set up the plain file and output all the posts. +header('Content-Type: text/plain'); +foreach($bookmarks['bookmarks'] as $row) { + echo $row['bAddress']."\n"; +} + + +?>