Skip to content

Commit

Permalink
Add question bank filter API guide
Browse files Browse the repository at this point in the history
This functionality was added in MDL-72321. MDL-78220 will add several
new filters, so this guide may expand as the children of that tracker
are developed.
  • Loading branch information
marxjohnson committed Dec 3, 2024
1 parent 52e8379 commit 4d0a913
Show file tree
Hide file tree
Showing 2 changed files with 216 additions and 0 deletions.
215 changes: 215 additions & 0 deletions docs/apis/plugintypes/qbank/filters.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,215 @@
---
title: Question bank filters
tags:
- Plugins
- Question
- qbank
description: Question bank plugins allow you to define new filters for the question bank view and random question sets.
documentationDraft: true
---

<Since
version="4.3"
issueNumber="MDL-72321"
/>

Question bank plugins allow you define additional filters. These can be used when viewing the question bank, and are included
in the URL so that a filtered view of the question bank can be shared. They are also used when defining the criteria for adding
random questions to a quiz.

## Creating a new filter condition

A filter condition consists of two parts - the backend "condition" PHP class, and the frontend "filter" Javascript class.

The "condition" class defines the general properties of the filter - its name, various options, and how it is applied to the
question bank query.
The "filter" class defines how the filter is displayed in the UI, and how values selected in the UI are passed back to the condition.

Each new filter condition must define a new "condition" class in the qbank plugin based on `core_question\local\bank\condition`.
By default this will use the `core/datafilter/filtertype` "filter" class, although this can be overriden too if required.

### Basic example

This outlines the bare minimum required to implement a new filter condition. This will allow you to filter based on a pre-defined
list of values, selected from an autocomplete field. This assumes that you already have the basic framework of a qbank
plugin in place. For real-world examples, look for classes that extend `core_question\local\bank\condition`.

Create a `condition` class within your plugin's namespace. For a plugin called `qbank_myplugin` this would look something like:

```php
namespace qbank_myplugin;

use core_question\local\bank\condition;

class myfilter_condition extends condition {

}
```

Define the `get_name` method, which returns the label displayed in the filter UI.

```php
public function get_name(): string {
return get_string('myfilter_name', 'myplugin');
}
```

Define `get_condition_key`, which returns a unique machine-readable ID for this filter condition, used when passing the filter
as a parameter.

```php
public function get_condition_key(): string {
return 'myfilter';
}
```

To define the list of possible filter values, define `get_initial_values`, which returns an array of `['value', 'title']` for each
option.

```php
public function get_initial_values(): string {
return [
[
'value' => 0,
'title' => 'Option 1',
],
[
'value' => 1,
'title' => 'Option 2',
]
];
}
```

To prevent additional values being added by typing them into the autocomplete, define `allow_custom` and have it return `false`.

```php
public function allow_custom(): bool {
return false;
}
```

To actually filter the results, define `build_query_from_filter` which returns an SQL `WHERE` condition, and an array of parameters.
The `$filter` parameter recieves an array with a `'values'` key, containing an array of the selected values, and a `'jointype'` key,
containing one of the `JOINTTYPE_ANY`, `JOINTYPE_ALL` or `JOINTYPE_NONE` constants. Use these to build your condition as required.

```php
public function build_query_from_filter(array $filter): array {
$andor = ' AND ';
$equal = '=';
if ($filter['jointype'] === self::JOINTYPE_ANY) {
$andor = ' OR ';
} else if ($filter['jointype'] === self::JOINTYPE_NONE) {
$equal = '!=';
}
$conditions = [];
$params = [];
// In real life we'd probably use $DB->get_in_or_equal here.
foreach ($filter['values'] as $key => $value) {
$conditions[] = 'q.fieldname ' . $equal . ' :myfilter' . $key;
$params['myfilter' . $key] = $value;
}
return [
'(' . implode($andor, $conditions) . ')',
$params,
];
}
```

Following this pattern with your own fields and options will give you a basic functional filter. Most filters will require
more complex functionality, which can be achieved through additional methods.

### Additional options

#### Restrict join types

Not all join types are relevant to all filters. If each question will only match one of the selected values, it does not make
sense to allow JOINTYPE_ALL. Define `get_join_list` and return an array of the applicable jointypes.

```php
public function get_join_list(): array {
return [
datafilter::JOINTYPE_ANY,
datafilter::JOINTYPE_NONE,
];
}
```

#### Custom filter class

By default, the filter will be displayed and processed using the `core/datafilter/filtertype` Javascript class.
This will provide a single autocomplete field for selecting one or multiple numeric IDs with textual labels.
If this does not fit your filter's use case, you will need to define your own filter class.

Create a new javascript file in your plugin under `amd/src/datafilter/filtertypes/myfilter.js`.
In this file, export a default class that extends `core/datafilter/filtertype`
(or another core filter type from '/lib/amd/src/datafilter/filtertypes') and override the base methods as required.
For example, if your filter uses textual rather than numeric values, you can override `get values()` to return the raw values
without running `parseInt()` (see `types` filter). If you want a different UI for selecting your filter values instead of a
single autocomplete, you can override `addValueSelector()`.

To tell your filter condition to use a custom filter class, override the `get_filter_class()` method to return the namespaced
path to your Javascript class.

```php
public function get_filter_class(): string {
return 'qbank_myplugin/datafilter/filtertype/myfilter';
}
```

#### Allow multiple values?

By default, conditions allow multiple values to be selected and use the selected JOINTYPE to decide how they are applied.
If your condition should only allow a single value at a time, override `allow_multiple()` to return false.

```php
public function allow_multiple(): bool {
return false;
}
```

#### Allow empty values?

By default, conditions can be left empty, and therefore will not be included in the filter. To make it compulsory to select a
value for this condition when it is added, override `allow_empty` to return false.

```php
public function allow_empty(): bool {
return false;
}
```

#### Is the condition required?

If it is compulsory that your condition is always displayed, override `is_required` to return true.

```php
public function is_required(): bool {
return true;
}
```

#### Filter options

If your condition supports additional options as to how the selected values are applied to the query, such as whether child
categories are included when parent categories are selected, you can define "Filter options".

In your condition class, define `get_filteroptions()` which returns an object containing the current filter options. You will
probably want to add some code to the constructor to read in the current filter options, and some code the `build_query_from_filter`
to use the option. See
[`qbank_managecategories\category_condition`](https://github.com/moodle/moodle/blob/main/question/bank/managecategories/classes/category_condition.php#L331)
as an example.

You javascript filter class will also need to support your filter options. Override the constructor an add additional code
for the UI required to set your filter options, and override `get filterOptions()` to return the current value for any options set
in this UI. See [`qbank_managecategories/datafilter/filtertypes/categories`](https://github.com/moodle/moodle/blob/main/question/bank/managecategories/amd/src/datafilter/filtertypes/categories.js#L34)
as an example.

#### Context-sensitive configuration

You may want your filter to behave differently depending on where it is being displayed. In this case you can override the
constructor which receives the current `$qbank` view object, and extract some data that is used later on by your other methods.

For example, the
[tag condition](https://github.com/moodle/moodle/blob/main/question/bank/tagquestion/classes/tag_condition.php#L47C1-L47C49)
will find the context of the current page, and use that to control which tags are available in the filter.
1 change: 1 addition & 0 deletions docs/apis/plugintypes/qbank/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ Question bank plugins can extend the question bank in many ways, including:
- Bulk actions
- Navigation node (tabs)
- Question preview additions (via callback)
- [Question filters](./filters.md)

The place to start implementing most of these is with a class `classes/plugin_features.php` in your plugin, that declares which features you want to add to the question bank. Until more documentation is written, looking at the examples of the plugins in Moodle core should give you a good idea what you need to do.

0 comments on commit 4d0a913

Please sign in to comment.