gitlab_medici/app/FrontModule/component/Keyboard/Keyboard.php @ f193cf94
1 |
<?php
|
---|---|
2 |
|
3 |
|
4 |
namespace App\FrontModule\Components; |
5 |
|
6 |
|
7 |
use Nette\Application\UI\Control; |
8 |
|
9 |
class Keyboard extends Control |
10 |
{
|
11 |
public function render() |
12 |
{
|
13 |
$this->template->setFile(__DIR__ . '/Keyboard.latte'); |
14 |
$this->template->render(); |
15 |
}
|
16 |
}
|
17 |
|
18 |
interface IKeyboard |
19 |
{
|
20 |
/**
|
21 |
* @return Keyboard
|
22 |
*/
|
23 |
public function create(); |
24 |
}
|
- « Předchozí
- 1
- 2
- Další »