lithium\g11n\catalog\Adapter::write()
Writes data.
Override this method in subclasses if you want the adapter
to have write support. The method is expected to return false
if the passed category is not supported.
Please note that existing data is silently overwritten.
Parameters
-
string
$categoryA category.
-
string
$localeA locale identifier.
-
string
$scopeThe scope for the current operation.
-
array
$dataThe data to write.
Returns
falseThis currently does nothing.
Source
public function write($category, $locale, $scope, array $data) {
return false;
}