Merge "Drop index oi_name_archive_name on table oldimage"
[lhc/web/wiklou.git] / includes / changes / ChangesListStringOptionsFilter.php
1 <?php
2
3 /**
4 * An individual filter in a ChangesListStringOptionsFilterGroup.
5 *
6 * This filter type will only be displayed on the structured UI currently.
7 *
8 * @since 1.29
9 */
10 class ChangesListStringOptionsFilter extends ChangesListFilter {
11 /**
12 * @inheritdoc
13 */
14 public function displaysOnUnstructuredUi( ChangesListSpecialPage $specialPage ) {
15 return false;
16 }
17 }