# multisafepay/trunk/src/Settings/StatusController.php

MultiSafepay plugin for WooCommerce, version trunk. 24 lines.

- Page: https://pluginprobe.com/plugins/multisafepay/trunk/code/src/Settings/StatusController.php
- Raw: https://pluginprobe.com/plugins/multisafepay/trunk/raw/src/Settings/StatusController.php
- Modified: 2023-10-04T09:34:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/multisafepay/trunk/code/src/Settings/StatusController.php#L10-L20`.

```php
<?php declare(strict_types=1);

namespace MultiSafepay\WooCommerce\Settings;

/**
 * Defines all the functionalities needed on the system report tab in the settings page
 *
 * Class StatusController
 *
 * @package MultiSafepay\WooCommerce\Settings
 */
class StatusController {

    /**
     * Render and display the status tab
     */
    public function display() {
        $system_report            = new SystemReport();
        $status_report            = $system_report->get_multisafepay_system_status_report();
        $plain_text_status_report = $system_report->get_plain_text_system_status_report();
        require_once MULTISAFEPAY_PLUGIN_DIR_PATH . 'templates/partials/multisafepay-settings-status-display.php';
    }
}

```
