| 1 | <?php |
||
| 19 | class WidgetFactoryContext extends ManialinkFactoryContext |
||
| 20 | { |
||
| 21 | /** @var Translations */ |
||
| 22 | protected $translationsHelper; |
||
| 23 | |||
| 24 | /** @var UiFactory */ |
||
| 25 | protected $uiFactory; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * WidgetFactoryContext constructor. |
||
| 29 | * |
||
| 30 | * @param $className |
||
| 31 | * @param GuiHandler $guiHandler |
||
| 32 | * @param Factory $groupFactory |
||
| 33 | * @param ActionFactory $actionFactory |
||
| 34 | * @param Translations $translations |
||
| 35 | */ |
||
| 36 | public function __construct( |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return Translations |
||
| 52 | */ |
||
| 53 | public function getTranslationsHelper() |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @return UiFactory |
||
| 60 | */ |
||
| 61 | public function getUiFactory() |
||
| 65 | } |