1 | <?php |
||
20 | class Standard |
||
21 | extends \Aimeos\Admin\JsonAdm\Standard |
||
22 | implements \Aimeos\Admin\JsonAdm\Common\Iface |
||
23 | { |
||
24 | /** admin/jsonadm/catalog/decorators/excludes |
||
25 | * Excludes decorators added by the "common" option from the JSON API clients |
||
26 | * |
||
27 | * Decorators extend the functionality of a class by adding new aspects |
||
28 | * (e.g. log what is currently done), executing the methods of the underlying |
||
29 | * class only in certain conditions (e.g. only for logged in users) or |
||
30 | * modify what is returned to the caller. |
||
31 | * |
||
32 | * This option allows you to remove a decorator added via |
||
33 | * "admin/jsonadm/common/decorators/default" before they are wrapped |
||
34 | * around the Jsonadm client. |
||
35 | * |
||
36 | * admin/jsonadm/decorators/excludes = array( 'decorator1' ) |
||
37 | * |
||
38 | * This would remove the decorator named "decorator1" from the list of |
||
39 | * common decorators ("\Aimeos\Admin\JsonAdm\Common\Decorator\*") added via |
||
40 | * "admin/jsonadm/common/decorators/default" for the JSON API client. |
||
41 | * |
||
42 | * @param array List of decorator names |
||
43 | * @since 2016.01 |
||
44 | * @category Developer |
||
45 | * @see admin/jsonadm/common/decorators/default |
||
46 | * @see admin/jsonadm/catalog/decorators/global |
||
47 | * @see admin/jsonadm/catalog/decorators/local |
||
48 | */ |
||
49 | |||
50 | /** admin/jsonadm/catalog/decorators/global |
||
51 | * Adds a list of globally available decorators only to the Jsonadm client |
||
52 | * |
||
53 | * Decorators extend the functionality of a class by adding new aspects |
||
54 | * (e.g. log what is currently done), executing the methods of the underlying |
||
55 | * class only in certain conditions (e.g. only for logged in users) or |
||
56 | * modify what is returned to the caller. |
||
57 | * |
||
58 | * This option allows you to wrap global decorators |
||
59 | * ("\Aimeos\Admin\Jsonadm\Common\Decorator\*") around the Jsonadm |
||
60 | * client. |
||
61 | * |
||
62 | * admin/jsonadm/catalog/decorators/global = array( 'decorator1' ) |
||
63 | * |
||
64 | * This would add the decorator named "decorator1" defined by |
||
65 | * "\Aimeos\Admin\Jsonadm\Common\Decorator\Decorator1" only to the |
||
66 | * "catalog" Jsonadm client. |
||
67 | * |
||
68 | * @param array List of decorator names |
||
69 | * @since 2016.01 |
||
70 | * @category Developer |
||
71 | * @see admin/jsonadm/common/decorators/default |
||
72 | * @see admin/jsonadm/catalog/decorators/excludes |
||
73 | * @see admin/jsonadm/catalog/decorators/local |
||
74 | */ |
||
75 | |||
76 | /** admin/jsonadm/catalog/decorators/local |
||
77 | * Adds a list of local decorators only to the Jsonadm client |
||
78 | * |
||
79 | * Decorators extend the functionality of a class by adding new aspects |
||
80 | * (e.g. log what is currently done), executing the methods of the underlying |
||
81 | * class only in certain conditions (e.g. only for logged in users) or |
||
82 | * modify what is returned to the caller. |
||
83 | * |
||
84 | * This option allows you to wrap local decorators |
||
85 | * ("\Aimeos\Admin\Jsonadm\Catalog\Decorator\*") around the Jsonadm |
||
86 | * client. |
||
87 | * |
||
88 | * admin/jsonadm/catalog/decorators/local = array( 'decorator2' ) |
||
89 | * |
||
90 | * This would add the decorator named "decorator2" defined by |
||
91 | * "\Aimeos\Admin\Jsonadm\Catalog\Decorator\Decorator2" only to the |
||
92 | * "catalog" Jsonadm client. |
||
93 | * |
||
94 | * @param array List of decorator names |
||
95 | * @since 2016.01 |
||
96 | * @category Developer |
||
97 | * @see admin/jsonadm/common/decorators/default |
||
98 | * @see admin/jsonadm/catalog/decorators/excludes |
||
99 | * @see admin/jsonadm/catalog/decorators/global |
||
100 | */ |
||
101 | |||
102 | |||
103 | /** |
||
104 | * Returns the requested resource or the resource list |
||
105 | * |
||
106 | * @param string $body Request body |
||
107 | * @param array &$header Variable which contains the HTTP headers and the new ones afterwards |
||
108 | * @param integer &$status Variable which contains the HTTP status afterwards |
||
109 | * @return string Content for response body |
||
110 | */ |
||
111 | public function get( $body, array &$header, &$status ) |
||
132 | |||
133 | |||
134 | /** |
||
135 | * Returns the items with parent/child relationships |
||
136 | * |
||
137 | * @param array $items List of items implementing \Aimeos\MShop\Common\Item\Iface |
||
138 | * @param array $include List of resource types that should be fetched |
||
139 | * @return array List of items implementing \Aimeos\MShop\Common\Item\Iface |
||
140 | */ |
||
141 | protected function getChildItems( array $items, array $include ) |
||
154 | |||
155 | |||
156 | /** |
||
157 | * Retrieves the item or items and adds the data to the view |
||
158 | * |
||
159 | * @param \Aimeos\MW\View\Iface $view View instance |
||
160 | * @return \Aimeos\MW\View\Iface View instance with additional data assigned |
||
161 | */ |
||
162 | protected function getItems( \Aimeos\MW\View\Iface $view ) |
||
187 | |||
188 | |||
189 | /** |
||
190 | * Returns the list items for association relationships |
||
191 | * |
||
192 | * @param array $items List of items implementing \Aimeos\MShop\Common\Item\Iface |
||
193 | * @param array $include List of resource types that should be fetched |
||
194 | * @return array List of items implementing \Aimeos\MShop\Common\Item\Lists\Iface |
||
195 | */ |
||
196 | protected function getListItems( array $items, array $include ) |
||
209 | |||
210 | |||
211 | /** |
||
212 | * Saves and returns the new or updated item |
||
213 | * |
||
214 | * @param \Aimeos\MShop\Common\Manager\Iface $manager Manager responsible for the items |
||
215 | * @param \stdClass $entry Object including "id" and "attributes" elements |
||
216 | * @return \Aimeos\MShop\Common\Item\Iface New or updated item |
||
217 | */ |
||
218 | protected function saveEntry( \Aimeos\MShop\Common\Manager\Iface $manager, \stdClass $entry ) |
||
246 | } |
||
247 |