function AutomaticContext::isAutomatic

Same name in other branches
  1. 8.x-3.x src/Context/AutomaticContext.php \Drupal\ctools\Context\AutomaticContext::isAutomatic()

Returns TRUE if this context is automatic and always available.

Return value

bool If the context is automatic or not.

File

src/Context/AutomaticContext.php, line 22

Class

AutomaticContext
Provides a class to indicate that this context is always present.

Namespace

Drupal\ctools\Context

Code

public function isAutomatic() {
    return TRUE;
}