You are here

function message_property_get_argument in Message 7

Entity property info getter callback for getting arguments.

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

File

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

Code

function message_property_get_argument($arguments, array $options, $name, $type, $context) {
  return isset($arguments[$context['message_replace_char'] . $name]) ? $arguments[$context['message_replace_char'] . $name] : NULL;
}