Text_MappedDiff::Text_MappedDiffpublicWP 1.0

PHP4 constructor.

Method of the class: Text_MappedDiff{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Text_MappedDiff = new Text_MappedDiff();
$Text_MappedDiff->Text_MappedDiff( $from_lines, $to_lines, $mapped_from_lines, $mapped_to_lines );
$from_lines(required)
.
$to_lines(required)
.
$mapped_from_lines(required)
.
$mapped_to_lines(required)
.

Text_MappedDiff::Text_MappedDiff() code WP 6.9

public function Text_MappedDiff( $from_lines, $to_lines,
                             $mapped_from_lines, $mapped_to_lines ) {
	self::__construct( $from_lines, $to_lines,
                             $mapped_from_lines, $mapped_to_lines );
}