Implement ::getSearchColumns()

refs #8241
This commit is contained in:
Alexander A. Klimov 2015-05-19 16:37:39 +02:00
parent cc050ed696
commit 2ed1d6c66b
1 changed files with 10 additions and 0 deletions

View File

@ -378,6 +378,16 @@ abstract class DataView implements QueryInterface, IteratorAggregate
return $this;
}
/**
* Get the view's search columns
*
* @return string[]
*/
public function getSearchColumns()
{
return array();
}
/**
* @deprecated(EL): Only use DataView::applyFilter() for applying filter because all other functions are missing
* column validation.