You are here

class MaestroStatus in Maestro 8.2

Same name and namespace in other branches
  1. 3.x src/Utility/MaestroStatus.php \Drupal\maestro\Utility\MaestroStatus

The Maestro status class.

Hierarchy

Expanded class hierarchy of MaestroStatus

3 files declare their use of MaestroStatus
MaestroProcessStatusBlock.php in src/Plugin/Block/MaestroProcessStatusBlock.php
MaestroProcessStatusController.php in src/Controller/MaestroProcessStatusController.php
MaestroTaskConsoleController.php in modules/maestro_taskconsole/src/Controller/MaestroTaskConsoleController.php

File

src/Utility/MaestroStatus.php, line 10

Namespace

Drupal\maestro\Utility
View source
class MaestroStatus {

  /**
   * Generates the staus bar showing process completion as status indicators.
   *
   * @param int $processID
   *   The Maestro Process ID.
   * @param int $queueID
   *   The Maestro Queue ID.
   * @param bool $skipExecuteCheck
   *   Set to TRUE to skip execution sheck.
   */
  public static function getMaestroStatusBar($processID, $queueID, $skipExecuteCheck = FALSE) {
    $build = [];
    $status_bar = '';
    $canExecute = MaestroEngine::canUserExecuteTask($queueID, \Drupal::currentUser()
      ->id());
    if ($canExecute || $skipExecuteCheck) {
      $templateMachineName = MaestroEngine::getTemplateIdFromProcessId($processID);
      $template = MaestroEngine::getTemplate($templateMachineName);
      $var_workflow_stage_count = intval(MaestroEngine::getProcessVariable('workflow_timeline_stage_count', $processID));

      // Shall we show the status bar?
      if (isset($template->default_workflow_timeline_stage_count) && intval($template->default_workflow_timeline_stage_count) > 0 && $var_workflow_stage_count > 0) {

        // Fetch the currently set status number and message.
        $current_status_number = intval(MaestroEngine::getProcessVariable('workflow_current_stage', $processID));
        $current_status_message = MaestroEngine::getProcessVariable('workflow_current_stage_message', $processID);
        $status_bar = '';
        $bar_render_array = [
          '#theme' => 'maestro_status_bar',
          '#stage_count' => $var_workflow_stage_count,
          '#stage_messages' => MaestroEngine::getAllStatusEntriesForProcess($processID),
          '#current_stage' => $current_status_number,
          '#current_stage_message' => $current_status_message,
        ];
        $status_bar = \Drupal::service('renderer')
          ->renderPlain($bar_render_array);

        // Anyone want to override it?
        \Drupal::moduleHandler()
          ->invokeAll('maestro_task_console_status_bar_alter', [
          &$status_bar,
          $processID,
        ]);
      }
      $build['status_bar'] = [
        '#children' => '<div class="maestro-timeline">' . $status_bar . '</div>',
      ];
    }
    return $build;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MaestroStatus::getMaestroStatusBar public static function Generates the staus bar showing process completion as status indicators.