DirectAdmin\LetsEncrypt\Lib\Logger::output PHP Method

output() public method

Render output, will be printed
public output ( boolean | string $back = true )
$back boolean | string
    public function output($back = true)
    {
        if ($back === true) {
            $back = 'javascript: window.history.back();';
        }
        ?>
        <table width="100%" height="100%" cellspacing="0" cellpadding="5">
            <tbody><tr>
                <td valign="middle" align="center">
                    <p align="center"><?php 
        echo $this->short;
        ?>
</p>
                </td>
            </tr>
            <tr>
                <td height="1" valign="middle" align="center">
                    <table width="50%">
                        <tbody>
                            <tr><td bgcolor="#C0C0C0"> </td></tr>
                        </tbody>
                    </table>
                </td>
            </tr>
            <tr>
                <td valign="top" align="center">
                    <p align="center"><b>Details</b></p>
                    <p align="center">
                        <?php 
        echo implode('<br />', $this->lines);
        ?>
                    </p>
                    <?php 
        if ($back) {
            ?>
                        <p align="center"><a href="<?php 
            echo $back;
            ?>
">Back</a></p>
                    <?php 
        }
        ?>
                </td>
            </tr>
            </tbody>
        </table>
        <?php 
    }