You are here

function hook_eck_bundle_save_message_alter in Entity Construction Kit (ECK) 7.2

Set custom title for bundle save message.

Parameters

string $msg: the string to be passed on to drupal_set_message() for entity save.

array $args: array of arguments.

array $context: context array.

1 invocation of hook_eck_bundle_save_message_alter()
eck__bundle__add_submit in ./eck.bundle.inc
Add bundle form callback.

File

./eck.api.php, line 143
ECK's API documentation.

Code

function hook_eck_bundle_save_message_alter(&$msg, $args, $context) {
  $msg = 'set this variable to change save message.';
}