MicroFrameWork/kernel/IGTabel/btn/PrimaryBtn.php

24 lines
510 B
PHP
Raw Normal View History

2024-07-24 17:22:59 +03:00
<?php
namespace kernel\IGTabel\btn;
class PrimaryBtn
{
protected string $btn = '';
public function __construct(string $title, string $url, $width)
2024-07-24 17:22:59 +03:00
{
$this->btn = "<a class='btn btn-primary' href='$url' style='margin: 3px; width: '$width >$title</a>";
2024-07-24 17:22:59 +03:00
}
public function fetch(): string
{
return $this->btn;
}
public static function create(string $title, string $url, $width = '150px'): PrimaryBtn
2024-07-24 17:22:59 +03:00
{
return new self($title, $url, $width);
2024-07-24 17:22:59 +03:00
}
}