This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/BBCode/Tags/Link.php
2016-10-07 21:50:55 +02:00

30 lines
502 B
PHP

<?php
/**
* Holds the link tag.
* @package Sakura
*/
namespace Sakura\BBCode\Tags;
use Sakura\BBCode\TagBase;
/**
* Zelda tag.
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class Link extends TagBase
{
/**
* The pattern to match.
* @var string
*/
public static $pattern = "/\[url\](.*?)\[\/url\]/s";
/**
* The string to replace it with.
* @var string
*/
public static $replace = "<a href='$1' class='bbcode__link'>$1</a>";
}