HelpTab.php
445 Bytes
<?php
namespace AC\Admin;
abstract class HelpTab
{
private $id;
private $title;
public function __construct(string $id, string $title)
{
$this->id = 'ac-tab-' . $id;
$this->title = $title;
}
public function get_title(): string
{
return $this->title;
}
public function get_id(): string
{
return $this->id;
}
abstract public function get_content(): string;
}