function stylizer_ui::list_search_fields
Provide a list of fields to test against for the default "search" widget.
This widget will search against whatever fields are configured here. By default it will attempt to search against the name, title and description fields.
Overrides ctools_export_ui::list_search_fields
File
-
stylizer/
plugins/ export_ui/ stylizer_ui.class.php, line 110
Class
- stylizer_ui
- UI class for Stylizer.
Code
public function list_search_fields() {
$fields = parent::list_search_fields();
$fields[] = 'plugin_title';
return $fields;
}