You are here

function message_property_set_argument in Message 7

Entity property info setter callback for arguments.

1 string reference to 'message_property_set_argument'
MessageMetadataController::entityPropertyInfo in ./message.info.inc

File

./message.module, line 976
API functions to manipulate messages.

Code

function message_property_set_argument(&$arguments, $name, $value, $langcode, $type, $context) {
  $arguments[$context['message_replace_char'] . $name] = $value;
}