Projet

Général

Profil

Révision 64156087

Ajouté par Assos Assos il y a plus de 7 ans

Weekly update of contrib modules

Voir les différences:

drupal7/sites/all/modules/panels/panels.api.php
11 11
 * @param string $argument
12 12
 *   The second half of the cache key. Full key module:TASK_NAME:HANDLER_NAME
13 13
 *   passed part: TASK_NAME:HANDLER_NAME
14
 * @param stdClass $cache
14
 * @param object $cache
15 15
 *   The display to cache.
16 16
 */
17 17
function hook_panels_cache_set($argument, $cache) {
......
56 56
 * @param string $argument
57 57
 *   The second half of the cache key. Full key module:TASK_NAME:HANDLER_NAME
58 58
 *   passed part: TASK_NAME:HANDLER_NAME
59
 * @param stdClass $cache
59
 * @param object $cache
60 60
 *   The display to cache.
61 61
 *
62 62
 * @return stdClass
......
78 78
 * @param string $argument
79 79
 *   The second half of the cache key. Full key module:TASK_NAME:HANDLER_NAME
80 80
 *   passed part: TASK_NAME:HANDLER_NAME
81
 * @param stdClass $cache
81
 * @param object $cache
82 82
 *   The cached display.
83 83
 */
84 84
function hook_panels_cache_clear($argument, $cache) {
......
105 105
 *
106 106
 * This happens after the keyword substitution.
107 107
 *
108
 * @param stdClass $content
108
 * @param object $content
109 109
 *   The content block to render.
110
 * @param stdClass $pane
110
 * @param object $pane
111 111
 *   The pane object.
112 112
 * @param array $args
113 113
 *   The display arguments.
......
125 125
 * @param string $argument
126 126
 *   The second half of the cache key. Full key module:TASK_NAME:HANDLER_NAME
127 127
 *   passed part: TASK_NAME:HANDLER_NAME
128
 * @param stdClass $cache
128
 * @param object $cache
129 129
 *   The cached display.
130 130
 */
131 131
function hook_panels_edit_cache_break_lock($argument, $cache) {
......
140 140
 *
141 141
 * @param panels_display $panels_display
142 142
 *   The panels display that will be rendered.
143
 * @param stdClass $renderer
143
 * @param object $renderer
144 144
 *   The renderer object that will be used to render.
145 145
 *
146 146
 * @return string
......
158 158
 *
159 159
 * @param panels_display $panels_display
160 160
 *   The rendered panels display.
161
 * @param stdClass $renderer
161
 * @param object $renderer
162 162
 *   The used renderer object.
163 163
 *
164 164
 * @return string
......
171 171
/**
172 172
 * Fired before a new pane is inserted in the storage.
173 173
 *
174
 * @param stdClass $pane
174
 * @param object $pane
175 175
 *   Pane that will be rendered.
176 176
 */
177 177
function hook_panels_pane_insert($pane) {
......
188 188
/**
189 189
 * Fired before a changed pane is updated in the storage.
190 190
 *
191
 * @param stdClass $pane
191
 * @param object $pane
192 192
 *   Pane that will be rendered.
193 193
 */
194 194
function hook_panels_pane_update($pane) {
......
208 208
 * Last chance to modify the pane before the keyword substitution runs and the
209 209
 * pane is rendered.
210 210
 *
211
 * @param stdClass $pane
211
 * @param object $pane
212 212
 *   Pane that will be rendered.
213 213
 */
214 214
function hook_panels_pane_prerender($pane) {
......
250 250
/**
251 251
 * Fired before a display is deleted.
252 252
 *
253
 * @param integer $did
253
 * @param int $did
254 254
 *   Id of the display to delete.
255 255
 */
256 256
function hook_panels_delete_display($did) {

Formats disponibles : Unified diff