You are here

function hook_tmgmt_smartling_bucket_job_name_alter in TMGMT Translator Smartling 8.4

Alter daily bucket job name.

Parameters

string $name:

1 function implements hook_tmgmt_smartling_bucket_job_name_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

tmgmt_smartling_test_alter_filename_tmgmt_smartling_bucket_job_name_alter in modules/tmgmt_smartling_test/modules/tmgmt_smartling_test_alter_filename/tmgmt_smartling_test_alter_filename.module
Implements hook_tmgmt_smartling_bucket_job_name_alter().
1 invocation of hook_tmgmt_smartling_bucket_job_name_alter()
BucketJobManager::getName in src/Smartling/BucketJobManager.php

File

./tmgmt_smartling.api.php, line 42
Hooks provided by the TMGMT Smartling module.

Code

function hook_tmgmt_smartling_bucket_job_name_alter(&$name) {
  $name = 'My daily bucket job';
}