function TMGMTRemote::removeRemoteData in Translation Management Tool 7
Removes data from remote_data storage.
Parameters
string $key: Access key for the data that are to be removed.
File
- entity/
tmgmt.entity.remote.inc, line 152
Class
- TMGMTRemote
- Entity class for the tmgmt_remote entity.
Code
function removeRemoteData($key) {
unset($this->remote_data[$key]);
}