1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<?php
/**
* An individual filter in a ChangesListStringOptionsFilterGroup.
*
* This filter type will only be displayed on the structured UI currently.
*
* @since 1.29
*/
class ChangesListStringOptionsFilter extends ChangesListFilter {
/**
* @inheritDoc
*/
public function displaysOnUnstructuredUi() {
return false;
}
/**
* @inheritDoc
*/
public function isSelected( FormOptions $opts ) {
$option = $opts[ $this->getGroup()->getName() ];
if ( $option === ChangesListStringOptionsFilterGroup::ALL ) {
return true;
}
$values = explode( ChangesListStringOptionsFilterGroup::SEPARATOR, $option );
return in_array( $this->getName(), $values );
}
}
|