Updated Migrate_provider bookmakr implementation

This commit is contained in:
Tom Needham 2012-02-03 22:41:39 +00:00
parent 1133eaa679
commit 24c79c5bce
1 changed files with 6 additions and 8 deletions

View File

@ -2,14 +2,12 @@
class OC_Migrate_Provider_Bookmarks extends OC_Migrate_Provider{
// Create the xml for the user supplied
function export($uid){
$xml = 'debugfrombookmarks';
//$query = OC_DB::prepare("SELECT * FROM *PREFIX*bookmarks WHERE *PREFIX*bookmakrs.user_id = ?");
//$bookmarks = $query->execute($uid);
//foreach($bookmarks as $bookmark){
// $xml .= '<bookmark>';
// $xml .='DATA WILL BE HERE';
// $xml .= '</bookmark>';
//}
$xml = 'test';
$query = OC_DB::prepare("SELECT * FROM *PREFIX*bookmarks WHERE *PREFIX*bookmarks.user_id = ?");
$bookmarks =& $query->execute(array($uid));
while ($row = $bookmarks->fetchRow()) {
$xml .= $row[0] . "\n";
}
return $xml;
}
}