mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
27 lines
677 B
PHP
27 lines
677 B
PHP
|
<?php
|
||
|
|
||
|
namespace BookStack\Activity\Notifications;
|
||
|
|
||
|
use Illuminate\Contracts\Support\Htmlable;
|
||
|
|
||
|
/**
|
||
|
* A line of text with linked text included, intended for use
|
||
|
* in MailMessages. The line should have a ':link' placeholder for
|
||
|
* where the link should be inserted within the line.
|
||
|
*/
|
||
|
class LinkedMailMessageLine implements Htmlable
|
||
|
{
|
||
|
public function __construct(
|
||
|
protected string $url,
|
||
|
protected string $line,
|
||
|
protected string $linkText,
|
||
|
) {
|
||
|
}
|
||
|
|
||
|
public function toHtml(): string
|
||
|
{
|
||
|
$link = '<a href="' . e($this->url) . '">' . e($this->linkText) . '</a>';
|
||
|
return str_replace(':link', $link, e($this->line));
|
||
|
}
|
||
|
}
|