function TempstoreConverter::applies

Same name in other branches
  1. 8.x-3.x src/ParamConverter/TempstoreConverter.php \Drupal\ctools\ParamConverter\TempstoreConverter::applies()

Overrides ParamConverterInterface::applies

File

src/ParamConverter/TempstoreConverter.php, line 159

Class

TempstoreConverter
Parameter converter for pulling entities out of the tempstore.

Namespace

Drupal\ctools\ParamConverter

Code

public function applies($definition, $name, Route $route) {
    if (!empty($definition['type']) && ($definition['type'] == 'tempstore' || strpos($definition['type'], 'tempstore:') === 0)) {
        if (!empty($definition['tempstore_id']) || $route->hasDefault('tempstore_id')) {
            return TRUE;
        }
    }
    return FALSE;
}