[ Index ]
 

Code source de eZ Publish 3.9.0

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

title

Body

[fermer]

/lib/ezdiff/classes/ -> ezdiffengine.php (source)

   1  <?php
   2  //
   3  // Definition of eZDiffEngine class
   4  //
   5  // <creation-tag>
   6  //
   7  // SOFTWARE NAME: eZ publish
   8  // SOFTWARE RELEASE: 3.9.0
   9  // BUILD VERSION: 17785
  10  // COPYRIGHT NOTICE: Copyright (C) 1999-2006 eZ systems AS
  11  // SOFTWARE LICENSE: GNU General Public License v2.0
  12  // NOTICE: >
  13  //   This program is free software; you can redistribute it and/or
  14  //   modify it under the terms of version 2.0  of the GNU General
  15  //   Public License as published by the Free Software Foundation.
  16  //
  17  //   This program is distributed in the hope that it will be useful,
  18  //   but WITHOUT ANY WARRANTY; without even the implied warranty of
  19  //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20  //   GNU General Public License for more details.
  21  //
  22  //   You should have received a copy of version 2.0 of the GNU General
  23  //   Public License along with this program; if not, write to the Free
  24  //   Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  25  //   MA 02110-1301, USA.
  26  //
  27  //
  28  
  29  /*! \file ezdiffengine.php
  30    DiffEngine abstract class
  31  */
  32  
  33  /*!
  34    \class eZDiffEngine ezdiffengine.php
  35    \abstract
  36    \ingroup eZDiff
  37    \brief eZDiff provides an access point the diff system
  38    
  39    The eZDiffEngine class is an abstract class, providing interface and shared code
  40    for the different available DiffEngine.
  41  */
  42  class eZDiffEngine
  43  {
  44      /*!
  45        This method must be overridden for each implementation of eZDiffEngine. This is the function
  46        which created the object containing the detected changes in the data set.
  47      */
  48      function createDifferenceObject( $fromData, $toData )
  49      {
  50      }
  51  
  52      /// \privatesection
  53      var $DiffMode;
  54  }
  55  
  56  ?>


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