public function RemoteMapping::addRemoteData in Translation Management Tool 8
Adds data to the remote_data storage.
Parameters
string $key: Key through which the data will be accessible.
int $value: Value to store.
Overrides RemoteMappingInterface::addRemoteData
File
- src/
Entity/ RemoteMapping.php, line 102
Class
- RemoteMapping
- Entity class for the tmgmt_remote entity.
Namespace
Drupal\tmgmt\EntityCode
public function addRemoteData($key, $value) {
$this->remote_data->{$key} = $value;
}