SimpleLogger::getLogRowDetailsOutput PHP Method

getLogRowDetailsOutput() public method

Use this method to output detailed output for a log row Example usage is if a user has uploaded an image then a thumbnail of that image can bo outputed here
public getLogRowDetailsOutput ( object $row ) : string
$row object
return string HTML-formatted output
    public function getLogRowDetailsOutput($row)
    {
        $html = "";
        /**
         * Filter generated output for details
         *
         * @since 2.0
         *
         * @param string $html
         * @param object $row Log row
         */
        $html = apply_filters("simple_history/row_details_output", $html, $row);
        return $html;
    }