You are here

public function LanguageSelectionPageConditionTitle::evaluate in Language Selection Page 8.2

Evaluates the condition and returns TRUE or FALSE accordingly.

Return value

bool TRUE if the condition has been met, FALSE otherwise.

Overrides LanguageSelectionPageConditionBase::evaluate

File

src/Plugin/LanguageSelectionPageCondition/LanguageSelectionPageConditionTitle.php, line 53

Class

LanguageSelectionPageConditionTitle
The LanguageSelectionPageConditionTitle class.

Namespace

Drupal\language_selection_page\Plugin\LanguageSelectionPageCondition

Code

public function evaluate() {
  return $this
    ->pass();
}