mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
10 lines
220 B
PHP
10 lines
220 B
PHP
<?
|
|
class Tag{
|
|
public $Name;
|
|
public $Url;
|
|
|
|
public function __construct(string $name){
|
|
$this->Name = $name;
|
|
$this->Url = '/tags/' . strtolower(str_replace(' ', '-', Formatter::ToPlainText($this->Name))) . '/';
|
|
}
|
|
}
|