You are here

protected static function DeveloperSyncController::generateTag in Apigee Edge 8

Generates a job tag.

Parameters

string $type: Tag type.

Return value

string Job tag.

2 calls to DeveloperSyncController::generateTag()
DeveloperSyncController::getBatch in src/Controller/DeveloperSyncController.php
Gets the batch array.
DeveloperSyncController::schedule in src/Controller/DeveloperSyncController.php
Handler for 'apigee_edge.developer_sync.schedule'.

File

src/Controller/DeveloperSyncController.php, line 82

Class

DeveloperSyncController
Controller for the developer synchronization-related pages.

Namespace

Drupal\apigee_edge\Controller

Code

protected static function generateTag(string $type) : string {
  return "developer_sync_{$type}_" . user_password();
}