<?php
/******************************************************************************
* SiteBar 3 - The Bookmark Server for Personal and Team Use. *
* Copyright (C) 2004-2006 Ondrej Brablc <http://brablc.com/mailto?o> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
******************************************************************************/
$SB_loader_title['xbel'] = 'XBEL';
class SB_Loader_xbel extends SB_LoaderInterface
{
function SB_Loader_xbel($useEngine=true, $charSet=null)
{
$this->SB_LoaderInterface($useEngine, $charSet);
}
function getNodeTag()
{
return 'folder';
}
function getLinkTag()
{
return 'bookmark';
}
function createNode($xmlTag)
{
foreach ($xmlTag['children'] as $index => $value)
{
if ($value['tag'] == 'title')
{
$xmlTag['attributes']['name'] = $value['value'];
}
if ($value['tag'] == 'desc')
{
$xmlTag['attributes']['comment'] = $value['value'];
}
}
return new SB_Tree_Node($xmlTag['attributes']);
}
function createLink($xmlTag)
{
$xmlTag['attributes']['url'] = $xmlTag['attributes']['href'];
foreach ($xmlTag['children'] as $index => $value)
{
if ($value['tag'] == 'title')
{
$xmlTag['attributes']['name'] = $value['value'];
}
if ($value['tag'] == 'desc')
{
$xmlTag['attributes']['comment'] = $value['value'];
}
if ($value['tag'] == 'info')
{
foreach ($value['children'] as $index2 => $value2)
{
if ($value2['tag'] == 'metadata')
{
if (isset($value2['attributes']['owner']) == "Mozilla")
{
if (isset($value2['attributes']['WebPanel']))
{
$xmlTag['attributes']['is_sidebar'] = $value2['attributes']['WebPanel'];
}
if (isset($value2['attributes']['FeedURL']))
{
$xmlTag['attributes']['url'] = $value2['attributes']['FeedURL'];
$xmlTag['attributes']['is_feed'] = 1;
}
}
}
}
}
}
$xmlTag['attributes']['changed'] = SB_safeVal($xmlTag['attributes'],'modified');
return new SB_Tree_Link($xmlTag['attributes']);
}
}