You are here

protected function DataPolicyDataPolicy::preprocessVariables in Open Social 8.8

Same name and namespace in other branches
  1. 8.9 themes/socialbase/src/Plugin/Preprocess/DataPolicyDataPolicy.php \Drupal\socialbase\Plugin\Preprocess\DataPolicyDataPolicy::preprocessVariables()
  2. 8.2 themes/socialbase/src/Plugin/Preprocess/DataPolicyDataPolicy.php \Drupal\socialbase\Plugin\Preprocess\DataPolicyDataPolicy::preprocessVariables()
  3. 8.3 themes/socialbase/src/Plugin/Preprocess/DataPolicyDataPolicy.php \Drupal\socialbase\Plugin\Preprocess\DataPolicyDataPolicy::preprocessVariables()
  4. 8.4 themes/socialbase/src/Plugin/Preprocess/DataPolicyDataPolicy.php \Drupal\socialbase\Plugin\Preprocess\DataPolicyDataPolicy::preprocessVariables()
  5. 8.5 themes/socialbase/src/Plugin/Preprocess/DataPolicyDataPolicy.php \Drupal\socialbase\Plugin\Preprocess\DataPolicyDataPolicy::preprocessVariables()
  6. 8.6 themes/socialbase/src/Plugin/Preprocess/DataPolicyDataPolicy.php \Drupal\socialbase\Plugin\Preprocess\DataPolicyDataPolicy::preprocessVariables()
  7. 8.7 themes/socialbase/src/Plugin/Preprocess/DataPolicyDataPolicy.php \Drupal\socialbase\Plugin\Preprocess\DataPolicyDataPolicy::preprocessVariables()

Preprocess the variables array.

Parameters

\Drupal\bootstrap\Utility\Variables $variables: The Variables object.

Overrides PreprocessBase::preprocessVariables

File

themes/socialbase/src/Plugin/Preprocess/DataPolicyDataPolicy.php, line 20

Class

DataPolicyDataPolicy
Pre-processes variables for the "data_policy_data_policy" theme hook.

Namespace

Drupal\socialbase\Plugin\Preprocess

Code

protected function preprocessVariables(Variables $variables) {
  if (!\Drupal::request()->request
    ->has('js')) {
    $variables->attributes['class'][] = 'card__body';
  }
}