1: <?php
2: /**
3: * Project sberp
4: *
5: * @file IParams
6: * @author Jaromír Polášek
7: * @version 0.7.1.FORM
8: * Encoding UTF-8
9: */
10:
11: namespace App\Interfaces;
12:
13: use Nette\ComponentModel\IContainer,
14: App\Model\Action;
15: /**
16: * Interface pro nastavitelné komponenty
17: */
18: interface Iparams {
19:
20: /**
21: * Konstruktor komponenty
22: */
23: public function __construct(Action $action, IContainer $parent = NULL, $name = NULL);
24:
25: /**
26: * Nastavuje parametry Komponenty před jejím vytvořením
27: */
28: public function setParams($params);
29:
30: }
31: