1 | <?php |
||
19 | class Shop |
||
20 | { |
||
21 | /** |
||
22 | * @var \Aimeos\MShop\Context\Item\Iface |
||
23 | */ |
||
24 | private $context; |
||
25 | |||
26 | /** |
||
27 | * @var \Aimeos\MW\View\Iface |
||
28 | */ |
||
29 | private $view; |
||
30 | |||
31 | /** |
||
32 | * @var array |
||
33 | */ |
||
34 | private $objects = []; |
||
35 | |||
36 | |||
37 | /** |
||
38 | * Initializes the object |
||
39 | * |
||
40 | * @param \Aimeos\Shop\Base\Aimeos $aimeos Aimeos object |
||
41 | * @param \Aimeos\Shop\Base\Context $context Context object |
||
42 | * @param \Aimeos\Shop\Base\View $view View object |
||
43 | */ |
||
44 | public function __construct( \Aimeos\Shop\Base\Aimeos $aimeos, |
||
55 | |||
56 | |||
57 | /** |
||
58 | * Returns the HTML client for the given name |
||
59 | * |
||
60 | * @param string $name Name of the shop component |
||
61 | * @return \Aimeos\Client\Html\Iface HTML client |
||
62 | */ |
||
63 | public function get( $name ) |
||
76 | } |