XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
xmltaghandler.php
Go to the documentation of this file.
1 <?php
2 // $Id: xmltaghandler.php 8066 2011-11-06 05:09:33Z beckmi $
3 /*******************************************************************************
4  Location: <strong>xml/XmlTagHandler</strong><br>
5  <br>
6  XmlTagHandler<br>
7  <br>
8  Copyright &copy; 2001 eXtremePHP. All rights reserved.<br>
9  <br>
10  @author Ken Egervari, Remi Michalski<br>
11  *******************************************************************************/
12 
14 {
15 
16  /****************************************************************************
17 
18  ****************************************************************************/
19  function XmlTagHandler()
20  {
21  }
22 
23  /****************************************************************************
24 
25  ****************************************************************************/
26  function getName()
27  {
28  return '';
29  }
30 
31  /****************************************************************************
32 
33  ****************************************************************************/
34  function handleBeginElement(&$parser, &$attributes)
35  {
36 
37  }
38 
39  /****************************************************************************
40 
41  ****************************************************************************/
43  {
44 
45  }
46 
47  /****************************************************************************
48 
49  ****************************************************************************/
50  function handleCharacterData(&$parser, &$data)
51  {
52 
53  }
54 }
55 
56 ?>