. * */ // Check if we are a user OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('bookmarks'); $req_type=isset($_GET['type']) ? $_GET['type'] : ''; if($req_type == 'url_info' && $_GET['url']) { $datas = OC_Bookmarks_Bookmarks::getURLMetadata($_GET['url']); $title = isset($datas['title']) ? $datas['title'] : ''; OCP\JSON::success(array('title' => $title)); exit(); } OC_JSON::error(); exit();