2003-12-10 01:43:15 +01:00
|
|
|
<?php
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
|
|
|
* Parse OPML XML files and store in globals.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2009-07-02 05:15:00 +02:00
|
|
|
if ( ! defined('ABSPATH') )
|
|
|
|
die();
|
2003-12-10 01:43:15 +01:00
|
|
|
|
2014-06-20 19:26:14 +02:00
|
|
|
global $opml;
|
2003-12-10 01:43:15 +01:00
|
|
|
|
|
|
|
/**
|
2008-08-14 08:30:38 +02:00
|
|
|
* XML callback function for the start of a new XML tag.
|
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 0.71
|
2008-08-14 08:30:38 +02:00
|
|
|
* @access private
|
|
|
|
*
|
|
|
|
* @global array $names
|
|
|
|
* @global array $urls
|
|
|
|
* @global array $targets
|
|
|
|
* @global array $descriptions
|
|
|
|
* @global array $feeds
|
|
|
|
*
|
|
|
|
* @param mixed $parser XML Parser resource.
|
|
|
|
* @param string $tagName XML element name.
|
|
|
|
* @param array $attrs XML element attributes.
|
|
|
|
*/
|
2003-12-10 01:43:15 +01:00
|
|
|
function startElement($parser, $tagName, $attrs) {
|
2006-11-19 08:56:05 +01:00
|
|
|
global $names, $urls, $targets, $descriptions, $feeds;
|
2003-12-10 01:43:15 +01:00
|
|
|
|
2014-06-11 21:31:15 +02:00
|
|
|
if ( 'OUTLINE' === $tagName ) {
|
|
|
|
$name = '';
|
|
|
|
if ( isset( $attrs['TEXT'] ) ) {
|
|
|
|
$name = $attrs['TEXT'];
|
|
|
|
}
|
|
|
|
if ( isset( $attrs['TITLE'] ) ) {
|
|
|
|
$name = $attrs['TITLE'];
|
|
|
|
}
|
|
|
|
$url = '';
|
|
|
|
if ( isset( $attrs['URL'] ) ) {
|
|
|
|
$url = $attrs['URL'];
|
|
|
|
}
|
|
|
|
if ( isset( $attrs['HTMLURL'] ) ) {
|
|
|
|
$url = $attrs['HTMLURL'];
|
2006-11-19 08:56:05 +01:00
|
|
|
}
|
2014-07-17 11:14:16 +02:00
|
|
|
|
|
|
|
// Save the data away.
|
2014-06-11 21:31:15 +02:00
|
|
|
$names[] = $name;
|
|
|
|
$urls[] = $url;
|
|
|
|
$targets[] = isset( $attrs['TARGET'] ) ? $attrs['TARGET'] : '';
|
|
|
|
$feeds[] = isset( $attrs['XMLURL'] ) ? $attrs['XMLURL'] : '';
|
|
|
|
$descriptions[] = isset( $attrs['DESCRIPTION'] ) ? $attrs['DESCRIPTION'] : '';
|
2014-07-17 11:14:16 +02:00
|
|
|
} // End if outline.
|
2003-12-10 01:43:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-08-14 08:30:38 +02:00
|
|
|
* XML callback function that is called at the end of a XML tag.
|
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 0.71
|
2008-08-14 08:30:38 +02:00
|
|
|
* @access private
|
|
|
|
*
|
|
|
|
* @param mixed $parser XML Parser resource.
|
|
|
|
* @param string $tagName XML tag name.
|
|
|
|
*/
|
2003-12-10 01:43:15 +01:00
|
|
|
function endElement($parser, $tagName) {
|
2014-07-17 11:14:16 +02:00
|
|
|
// Nothing to do.
|
2003-12-10 01:43:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create an XML parser
|
|
|
|
$xml_parser = xml_parser_create();
|
|
|
|
|
|
|
|
// Set the functions to handle opening and closing tags
|
|
|
|
xml_set_element_handler($xml_parser, "startElement", "endElement");
|
|
|
|
|
2004-01-09 01:43:16 +01:00
|
|
|
if (!xml_parse($xml_parser, $opml, true)) {
|
2006-11-19 08:56:05 +01:00
|
|
|
echo(sprintf(__('XML error: %1$s at line %2$s'),
|
|
|
|
xml_error_string(xml_get_error_code($xml_parser)),
|
|
|
|
xml_get_current_line_number($xml_parser)));
|
2004-01-09 01:43:16 +01:00
|
|
|
}
|
2003-12-10 01:43:15 +01:00
|
|
|
|
|
|
|
// Free up memory used by the XML parser
|
|
|
|
xml_parser_free($xml_parser);
|