You are here

protected static function DeveloperSyncController::getFilter in Apigee Edge 8

Returns the developer sync filter.

Return value

null|string Filter condition or null if not set.

2 calls to DeveloperSyncController::getFilter()
DeveloperSyncController::batchGenerateJobs in src/Controller/DeveloperSyncController.php
The first batch operation.
DeveloperSyncController::schedule in src/Controller/DeveloperSyncController.php
Handler for 'apigee_edge.developer_sync.schedule'.

File

src/Controller/DeveloperSyncController.php, line 92

Class

DeveloperSyncController
Controller for the developer synchronization-related pages.

Namespace

Drupal\apigee_edge\Controller

Code

protected static function getFilter() : ?string {
  return (string) \Drupal::config('apigee_edge.sync')
    ->get('filter') ?: NULL;
}