You are here

function TMGMTRemote::addRemoteData in Translation Management Tool 7

Adds data to the remote_data storage.

Parameters

string $key: Key through which the data will be accessible.

$value: Value to store.

File

entity/tmgmt.entity.remote.inc, line 129

Class

TMGMTRemote
Entity class for the tmgmt_remote entity.

Code

function addRemoteData($key, $value) {
  $this->remote_data[$key] = $value;
}