[ Index ]
 

Code source de eZ Publish 3.9.0

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/lib/ezxml/classes/ -> ezelementtype.php (source)

   1  <?php
   2  //
   3  // $Id$
   4  //
   5  // Definition of eZElementType class
   6  //
   7  // Bård Farstad <bf@ez.no>
   8  // Created on: <14-Feb-2002 10:04:29 bf>
   9  //
  10  // SOFTWARE NAME: eZ publish
  11  // SOFTWARE RELEASE: 3.9.0
  12  // BUILD VERSION: 17785
  13  // COPYRIGHT NOTICE: Copyright (C) 1999-2006 eZ systems AS
  14  // SOFTWARE LICENSE: GNU General Public License v2.0
  15  // NOTICE: >
  16  //   This program is free software; you can redistribute it and/or
  17  //   modify it under the terms of version 2.0  of the GNU General
  18  //   Public License as published by the Free Software Foundation.
  19  //
  20  //   This program is distributed in the hope that it will be useful,
  21  //   but WITHOUT ANY WARRANTY; without even the implied warranty of
  22  //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23  //   GNU General Public License for more details.
  24  //
  25  //   You should have received a copy of version 2.0 of the GNU General
  26  //   Public License along with this program; if not, write to the Free
  27  //   Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  28  //   MA 02110-1301, USA.
  29  //
  30  //
  31  
  32  /*!
  33    \class eZElementType ezelementtype.php
  34    \ingroup eZXML
  35    \brief eZElementType is the main element type object
  36  */
  37  
  38  class eZElementType
  39  {
  40      /*!
  41        Creates a new element type object
  42      */
  43      function eZElementType()
  44      {
  45      }
  46  
  47      /*!
  48        Returns the type name.
  49      */
  50      function isA()
  51      {
  52          return "mainType";
  53      }
  54  
  55      /*!
  56        Sets the type name
  57      */
  58      function setName( $name )
  59      {
  60          $this->Name = $name;
  61      }
  62  
  63      /// the name of the type
  64      var $Name;
  65  }
  66  
  67  ?>


Généré le : Sat Feb 24 10:30:04 2007 par Balluche grâce à PHPXref 0.7