Translation_Entry::key(): string|false

In this article

Generates a unique key for this entry.

Return

string|false The key or false if the entry is null.

Source

public function key() {
	if ( null === $this->singular ) {
		return false;
	}

	// Prepend context and EOT, like in MO files.
	$key = ! $this->context ? $this->singular : $this->context . "\4" . $this->singular;
	// Standardize on \n line endings.
	$key = str_replace( array( "\r\n", "\r" ), "\n", $key );

	return $key;
}

User Contributed Notes

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