entity_mesh-1.1.1/src/Plugin/views/filter/SourceLangcodeFilter.php
src/Plugin/views/filter/SourceLangcodeFilter.php
<?php
namespace Drupal\entity_mesh\Plugin\views\filter;
/**
* Provides a custom filter for a specific column.
*
* @ViewsFilter("source_langcode_filter")
*/
class SourceLangcodeFilter extends BaseSelectFilter {
/**
* {@inheritdoc}
*/
protected $tableColumn = 'source_entity_langcode';
/**
* {@inheritdoc}
*/
protected $databaseTable = 'entity_mesh';
/**
* {@inheritdoc}
*/
protected $filterLabel = 'Source Langcode';
}
