PO::is_final()protected staticWP 1.0

Helper function for read_entry

Method of the class: PO{}

No Hooks.

Return

true|false.

Usage

$result = PO::is_final( $context );
$context(string) (required)
-

PO::is_final() code WP 6.4.3

protected static function is_final( $context ) {
	return ( 'msgstr' === $context ) || ( 'msgstr_plural' === $context );
}