You are here

function opigno_learning_path_theme_suggestions_multiselect in Opigno Learning path 8

File

./opigno_learning_path.module, line 204
Contains opigno_learning_path.module.

Code

function opigno_learning_path_theme_suggestions_multiselect(array $variables) {
  if (isset($variables["element"]["#name"]) && $variables["element"]["#name"] == 'new_class_users') {
    $suggestions = [];
    $suggestions[] = 'multiselect_new_class';
    return $suggestions;
  }
}