Changeset 8645 for trunk/wp-admin/link-parse-opml.php
- Timestamp:
- 08/14/2008 06:30:38 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/link-parse-opml.php
r7971 r8645 1 1 <?php 2 /** 3 * Parse OPML XML files and store in globals. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 9 /** Load WordPress Bootstrap */ 2 10 require_once('../wp-load.php'); 3 11 … … 16 24 17 25 /** 18 ** startElement() 19 ** Callback function. Called at the start of a new xml tag. 20 **/ 26 * XML callback function for the start of a new XML tag. 27 * 28 * @since unknown 29 * @access private 30 * 31 * @uses $updated_timestamp Not used inside function. 32 * @uses $all_links Not used inside function. 33 * @uses $map Stores names of attributes to use. 34 * @global array $names 35 * @global array $urls 36 * @global array $targets 37 * @global array $descriptions 38 * @global array $feeds 39 * 40 * @param mixed $parser XML Parser resource. 41 * @param string $tagName XML element name. 42 * @param array $attrs XML element attributes. 43 */ 21 44 function startElement($parser, $tagName, $attrs) { 22 45 global $updated_timestamp, $all_links, $map; … … 42 65 43 66 /** 44 ** endElement() 45 ** Callback function. Called at the end of an xml tag. 46 **/ 67 * XML callback function that is called at the end of a XML tag. 68 * 69 * @since unknown 70 * @access private 71 * @package WordPress 72 * @subpackage Dummy 73 * 74 * @param mixed $parser XML Parser resource. 75 * @param string $tagName XML tag name. 76 */ 47 77 function endElement($parser, $tagName) { 48 78 // nothing to do.
Note: See TracChangeset
for help on using the changeset viewer.