aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/TaskProcessing/IManager.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/TaskProcessing/IManager.php')
-rw-r--r--lib/public/TaskProcessing/IManager.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/TaskProcessing/IManager.php b/lib/public/TaskProcessing/IManager.php
index 1b59bb12ad4..a4ce9e8bbbe 100644
--- a/lib/public/TaskProcessing/IManager.php
+++ b/lib/public/TaskProcessing/IManager.php
@@ -46,10 +46,11 @@ interface IManager {
public function getPreferredProvider(string $taskTypeId);
/**
+ * @param bool $showDisabled if false, disabled task types will be filtered
* @return array<string, array{name: string, description: string, inputShape: ShapeDescriptor[], inputShapeEnumValues: ShapeEnumValue[][], inputShapeDefaults: array<array-key, numeric|string>, optionalInputShape: ShapeDescriptor[], optionalInputShapeEnumValues: ShapeEnumValue[][], optionalInputShapeDefaults: array<array-key, numeric|string>, outputShape: ShapeDescriptor[], outputShapeEnumValues: ShapeEnumValue[][], optionalOutputShape: ShapeDescriptor[], optionalOutputShapeEnumValues: ShapeEnumValue[][]}>
* @since 30.0.0
*/
- public function getAvailableTaskTypes(): array;
+ public function getAvailableTaskTypes(bool $showDisabled = false): array;
/**
* @param Task $task The task to run