369dbc19d6
add placeholder plugin/hook system
11 lines
104 B
PHP
11 lines
104 B
PHP
<?php
|
|
class Button {
|
|
|
|
protected $link;
|
|
|
|
function __construct($link) {
|
|
$this->link = $link;
|
|
}
|
|
|
|
}
|
|
?>
|