[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/ -> wp-diff.php (source)

   1  <?php
   2  /**
   3   * WordPress Diff bastard child of old MediaWiki Diff Formatter.
   4   *
   5   * Basically all that remains is the table structure and some method names.
   6   *
   7   * @package WordPress
   8   * @subpackage Diff
   9   */
  10  
  11  if ( ! class_exists( 'Text_Diff', false ) ) {
  12      /** Text_Diff class */
  13      require  ABSPATH . WPINC . '/Text/Diff.php';
  14      /** Text_Diff_Renderer class */
  15      require  ABSPATH . WPINC . '/Text/Diff/Renderer.php';
  16      /** Text_Diff_Renderer_inline class */
  17      require  ABSPATH . WPINC . '/Text/Diff/Renderer/inline.php';
  18  }
  19  
  20  require  ABSPATH . WPINC . '/class-wp-text-diff-renderer-table.php';
  21  require  ABSPATH . WPINC . '/class-wp-text-diff-renderer-inline.php';


Generated : Thu Mar 28 08:20:01 2024 Cross-referenced by PHPXref