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
See also
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 ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.4.0 | Introduced. |