WP_Text_Diff_Renderer_Table::__construct( array $params = array() )

In this article

Constructor – Call parent constructor with params array.

Description

This will set class properties based on the key value pairs in the array.

Parameters

$paramsarrayoptional

Default:array()

Source

public function __construct( $params = array() ) {
	parent::__construct( $params );
	if ( isset( $params['show_split_view'] ) ) {
		$this->_show_split_view = $params['show_split_view'];
	}
}

Changelog

VersionDescription
2.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.