lithium\g11n\catalog\Adapter::read()

public method

Reads data.

Override this method in subclasses if you want the adapter to have read support. The method is expected to return null if the passed category is not supported.

Parameters

  • string $category

    A category.

  • string $locale

    A locale identifier.

  • string $scope

    The scope for the current operation.

Returns

null

This currently does nothing.

Source

	public function read($category, $locale, $scope) {
		return null;
	}