You are here

public function MediaLibrarySelectForm::clickSortable in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/media_library/src/Plugin/views/field/MediaLibrarySelectForm.php \Drupal\media_library\Plugin\views\field\MediaLibrarySelectForm::clickSortable()

Determines if this field is click sortable.

Return value

bool The value of 'click sortable' from the plugin definition, this defaults to TRUE if not set.

Overrides FieldPluginBase::clickSortable

File

core/modules/media_library/src/Plugin/views/field/MediaLibrarySelectForm.php, line 149

Class

MediaLibrarySelectForm
Defines a field that outputs a checkbox and form for selecting media.

Namespace

Drupal\media_library\Plugin\views\field

Code

public function clickSortable() {
  return FALSE;
}