Warning: This method has been deprecated. Use Translation_Entry::__construct() instead.

Translation_Entry::Translation_Entry() WordPress Method

The Translation_Entry::Translation_Entry() method is used to construct a new Translation_Entry object. This object can be used to store information about a single translation unit, and can be used with the Translation API to perform various translation tasks.

Translation_Entry::Translation_Entry( $args = array() ) #

PHP4 constructor.


Description

Top ↑

See also


Top ↑

Source

File: wp-includes/pomo/entry.php

		public function Translation_Entry( $args = array() ) {
			_deprecated_constructor( self::class, '5.4.0', static::class );
			self::__construct( $args );
		}


Top ↑

Changelog

Changelog
VersionDescription
5.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.