Add workflow count to automation listing page

[MAILPOET-4540]
This commit is contained in:
Jan Jakes
2022-10-14 13:57:58 +02:00
committed by David Remer
parent 3eaa13a421
commit efd32043e3
5 changed files with 21 additions and 1 deletions

View File

@@ -93,6 +93,11 @@ class WorkflowStorage {
}, (array)$data);
}
public function getWorkflowCount(): int {
$workflowTable = esc_sql($this->workflowTable);
return (int)$this->wpdb->get_var("SELECT COUNT(*) FROM $workflowTable");
}
/** @return string[] */
public function getActiveTriggerKeys(): array {
$workflowTable = esc_sql($this->workflowTable);