summaryrefslogtreecommitdiff
path: root/sites/all/modules/ctools/ctools_plugin_example/ctools_plugin_example.pages_default.inc
blob: 10a76193826443f20dce69dd6b5a0275033223cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
<?php

/**
 * @file
 * This module provides default panels to demonstrate the behavior of the plugins.
 */

/**
 * Default panels pages for CTools Plugin Example
 *
 * To pick up this file, your module needs to implement
 * hook_ctools_plugin_api() - See ctools_plugin_example_ctools_plugin_api() in
 * ctools_plugin_example.module.
 *
 *
 * Note the naming of the file: <modulename>.pages_default.inc
 * With this naming, no additional code needs to be provided. CTools will just find the file.
 * The name of the hook is <modulename>_default_page_manager_pages()
 *
 * This example provides two pages, but the returned array could
 * have several pages.
 *
 * @return
 *   Array of pages, normally exported from Panels.
 */

function ctools_plugin_example_default_page_manager_pages() {

  // begin exported panel.

  $page = new stdClass;
  $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */
  $page->api_version = 1;
  $page->name = 'ctools_plugin_example';
  $page->task = 'page';
  $page->admin_title = 'CTools plugin example';
  $page->admin_description = 'This panel provides no functionality to a working Drupal system. It\'s intended to display the various sample plugins provided by the CTools Plugin Example module. ';
  $page->path = 'ctools_plugin_example/%sc';
  $page->access = array(
  'logic' => 'and',
  );
  $page->menu = array(
  'type' => 'normal',
  'title' => 'CTools plugin example',
  'name' => 'navigation',
  'weight' => '0',
  'parent' => array(
    'type' => 'none',
    'title' => '',
    'name' => 'navigation',
    'weight' => '0',
  ),
  );
  $page->arguments = array(
  'sc' => array(
    'id' => 2,
    'identifier' => 'simplecontext-arg',
    'name' => 'simplecontext_arg',
    'settings' => array(),
  ),
  );
  $page->conf = array();
  $page->default_handlers = array();
  $handler = new stdClass;
  $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */
  $handler->api_version = 1;
  $handler->name = 'page_ctools_panel_context';
  $handler->task = 'page';
  $handler->subtask = 'ctools_plugin_example';
  $handler->handler = 'panel_context';
  $handler->weight = 0;
  $handler->conf = array(
  'title' => 'Panel',
  'no_blocks' => FALSE,
  'css_id' => '',
  'css' => '',
  'contexts' => array(
    '0' => array(
      'name' => 'simplecontext',
      'id' => 1,
      'identifier' => 'Configured simplecontext (not from argument)',
      'keyword' => 'configured_simplecontext',
      'context_settings' => array(
        'sample_simplecontext_setting' => 'default simplecontext setting',
  ),
  ),
  ),
  'relationships' => array(
    '0' => array(
      'context' => 'argument_simplecontext_arg_2',
      'name' => 'relcontext_from_simplecontext',
      'id' => 1,
      'identifier' => 'Relcontext from simplecontext (from relationship)',
      'keyword' => 'relcontext',
  ),
  ),
  'access' => array(
    'logic' => 'and',
  ),
  );
  $display = new panels_display;
  $display->layout = 'threecol_33_34_33_stacked';
  $display->layout_settings = array();
  $display->panel_settings = array(
  'style' => 'rounded_corners',
  'style_settings' => array(
    'default' => array(
      'corner_location' => 'pane',
  ),
  ),
  );
  $display->cache = array();
  $display->title = 'CTools plugin example panel';
  $display->hide_title = FALSE;
  $display->title_pane = 1;
  $display->content = array();
  $display->panels = array();
  $pane = new stdClass;
  $pane->pid = 'new-1';
  $pane->panel = 'left';
  $pane->type = 'no_context_content_type';
  $pane->subtype = 'no_context_content_type';
  $pane->shown = TRUE;
  $pane->access = array();
  $pane->configuration = array(
    'item1' => 'contents of config item 1',
    'item2' => 'contents of config item 2',
    'override_title' => 0,
    'override_title_text' => '',
  );
  $pane->cache = array();
  $pane->style = array();
  $pane->css = array();
  $pane->extras = array();
  $pane->position = 0;
  $display->content['new-1'] = $pane;
  $display->panels['left'][0] = 'new-1';
  $pane = new stdClass;
  $pane->pid = 'new-2';
  $pane->panel = 'left';
  $pane->type = 'custom';
  $pane->subtype = 'custom';
  $pane->shown = TRUE;
  $pane->access = array(
    'plugins' => array(
      '0' => array(
        'name' => 'arg_length',
        'settings' => array(
          'greater_than' => '1',
          'arg_length' => '4',
  ),
        'context' => 'argument_simplecontext_arg_2',
  ),
  ),
  );
  $pane->configuration = array(
    'title' => 'Long Arg Visibility Block',
    'body' => 'This block will be here when the argument is longer than configured arg length. It uses the \'arg_length\' access plugin to test against the length of the argument used for Simplecontext.',
    'format' => '1',
    'substitute' => 1,
  );
  $pane->cache = array();
  $pane->style = array();
  $pane->css = array();
  $pane->extras = array();
  $pane->position = 1;
  $display->content['new-2'] = $pane;
  $display->panels['left'][1] = 'new-2';
  $pane = new stdClass;
  $pane->pid = 'new-3';
  $pane->panel = 'left';
  $pane->type = 'custom';
  $pane->subtype = 'custom';
  $pane->shown = TRUE;
  $pane->access = array(
    'plugins' => array(
      '0' => array(
        'name' => 'arg_length',
        'settings' => array(
          'greater_than' => '0',
          'arg_length' => '4',
  ),
        'context' => 'argument_simplecontext_arg_2',
  ),
  ),
  );
  $pane->configuration = array(
    'title' => 'Short Arg Visibility',
    'body' => 'This block appears when the simplecontext argument is <i>less than</i> the configured length.',
    'format' => '1',
    'substitute' => 1,
  );
  $pane->cache = array();
  $pane->style = array();
  $pane->css = array();
  $pane->extras = array();
  $pane->position = 2;
  $display->content['new-3'] = $pane;
  $display->panels['left'][2] = 'new-3';
  $pane = new stdClass;
  $pane->pid = 'new-4';
  $pane->panel = 'middle';
  $pane->type = 'simplecontext_content_type';
  $pane->subtype = 'simplecontext_content_type';
  $pane->shown = TRUE;
  $pane->access = array();
  $pane->configuration = array(
    'buttons' => NULL,
    '#validate' => NULL,
    '#submit' => NULL,
    '#action' => NULL,
    'context' => 'argument_simplecontext_arg_2',
    'aligner_start' => NULL,
    'override_title' => 1,
    'override_title_text' => 'Simplecontext (with an arg)',
    'aligner_stop' => NULL,
    'override_title_markup' => NULL,
    'config_item_1' => 'Config item 1 contents',
    '#build_id' => NULL,
    '#type' => NULL,
    '#programmed' => NULL,
    'form_build_id' => 'form-19c4ae6cb54fad8f096da46e95694e5a',
    '#token' => NULL,
    'form_token' => '17141d3531eaa7b609da78afa6f3b560',
    'form_id' => 'simplecontext_content_type_edit_form',
    '#id' => NULL,
    '#description' => NULL,
    '#attributes' => NULL,
    '#required' => NULL,
    '#tree' => NULL,
    '#parents' => NULL,
    '#method' => NULL,
    '#post' => NULL,
    '#processed' => NULL,
    '#defaults_loaded' => NULL,
  );
  $pane->cache = array();
  $pane->style = array();
  $pane->css = array();
  $pane->extras = array();
  $pane->position = 0;
  $display->content['new-4'] = $pane;
  $display->panels['middle'][0] = 'new-4';
  $pane = new stdClass;
  $pane->pid = 'new-5';
  $pane->panel = 'middle';
  $pane->type = 'simplecontext_content_type';
  $pane->subtype = 'simplecontext_content_type';
  $pane->shown = TRUE;
  $pane->access = array();
  $pane->configuration = array(
    'buttons' => NULL,
    '#validate' => NULL,
    '#submit' => NULL,
    '#action' => NULL,
    'context' => 'context_simplecontext_1',
    'aligner_start' => NULL,
    'override_title' => 1,
    'override_title_text' => 'Configured simplecontext content type (not from arg)',
    'aligner_stop' => NULL,
    'override_title_markup' => NULL,
    'config_item_1' => '(configuration for simplecontext)',
    '#build_id' => NULL,
    '#type' => NULL,
    '#programmed' => NULL,
    'form_build_id' => 'form-d016200490abd015dc5b8a7e366d76ea',
    '#token' => NULL,
    'form_token' => '17141d3531eaa7b609da78afa6f3b560',
    'form_id' => 'simplecontext_content_type_edit_form',
    '#id' => NULL,
    '#description' => NULL,
    '#attributes' => NULL,
    '#required' => NULL,
    '#tree' => NULL,
    '#parents' => NULL,
    '#method' => NULL,
    '#post' => NULL,
    '#processed' => NULL,
    '#defaults_loaded' => NULL,
  );
  $pane->cache = array();
  $pane->style = array();
  $pane->css = array();
  $pane->extras = array();
  $pane->position = 1;
  $display->content['new-5'] = $pane;
  $display->panels['middle'][1] = 'new-5';
  $pane = new stdClass;
  $pane->pid = 'new-6';
  $pane->panel = 'middle';
  $pane->type = 'custom';
  $pane->subtype = 'custom';
  $pane->shown = TRUE;
  $pane->access = array();
  $pane->configuration = array(
    'admin_title' => 'Simplecontext keyword usage',
    'title' => 'Simplecontext keyword usage',
    'body' => 'Demonstrating context keyword usage:
    item1 is %sc:item1
    item2 is %sc:item2
    description is %sc:description',
    'format' => '1',
    'substitute' => 1,
  );
  $pane->cache = array();
  $pane->style = array();
  $pane->css = array();
  $pane->extras = array();
  $pane->position = 2;
  $display->content['new-6'] = $pane;
  $display->panels['middle'][2] = 'new-6';
  $pane = new stdClass;
  $pane->pid = 'new-7';
  $pane->panel = 'right';
  $pane->type = 'relcontext_content_type';
  $pane->subtype = 'relcontext_content_type';
  $pane->shown = TRUE;
  $pane->access = array();
  $pane->configuration = array(
    'buttons' => NULL,
    '#validate' => NULL,
    '#submit' => NULL,
    '#action' => NULL,
    'context' => 'relationship_relcontext_from_simplecontext_1',
    'aligner_start' => NULL,
    'override_title' => 0,
    'override_title_text' => '',
    'aligner_stop' => NULL,
    'override_title_markup' => NULL,
    'config_item_1' => 'some stuff in this one',
    '#build_id' => NULL,
    '#type' => NULL,
    '#programmed' => NULL,
    'form_build_id' => 'form-8485f84511bd06e51b4a48e998448054',
    '#token' => NULL,
    'form_token' => '1c3356396374d51d7d2531a10fd25310',
    'form_id' => 'relcontext_edit_form',
    '#id' => NULL,
    '#description' => NULL,
    '#attributes' => NULL,
    '#required' => NULL,
    '#tree' => NULL,
    '#parents' => NULL,
    '#method' => NULL,
    '#post' => NULL,
    '#processed' => NULL,
    '#defaults_loaded' => NULL,
  );
  $pane->cache = array();
  $pane->style = array();
  $pane->css = array();
  $pane->extras = array();
  $pane->position = 0;
  $display->content['new-7'] = $pane;
  $display->panels['right'][0] = 'new-7';
  $pane = new stdClass;
  $pane->pid = 'new-8';
  $pane->panel = 'top';
  $pane->type = 'custom';
  $pane->subtype = 'custom';
  $pane->shown = TRUE;
  $pane->access = array();
  $pane->configuration = array(
    'title' => 'Demonstrating ctools plugins',
    'body' => 'The CTools Plugin Example module (and this panel page) are just here to demonstrate how to build CTools plugins.

            ',
    'format' => '2',
    'substitute' => 1,
  );
  $pane->cache = array();
  $pane->style = array();
  $pane->css = array();
  $pane->extras = array();
  $pane->position = 0;
  $display->content['new-8'] = $pane;
  $display->panels['top'][0] = 'new-8';
  $handler->conf['display'] = $display;
  $page->default_handlers[$handler->name] = $handler;

  // end of exported panel.
  $pages['ctools_plugin_example_demo_page'] = $page;

  // begin exported panel

  $page = new stdClass;
  $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */
  $page->api_version = 1;
  $page->name = 'ctools_plugin_example_base';
  $page->task = 'page';
  $page->admin_title = 'CTools Plugin Example base page';
  $page->admin_description = 'This panel is for when people hit /ctools_plugin_example without an argument. We can use it to tell people to move on.';
  $page->path = 'ctools_plugin_example';
  $page->access = array();
  $page->menu = array();
  $page->arguments = array();
  $page->conf = array();
  $page->default_handlers = array();
  $handler = new stdClass;
  $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */
  $handler->api_version = 1;
  $handler->name = 'page_ctools_plugin_example_base_panel_context';
  $handler->task = 'page';
  $handler->subtask = 'ctools_plugin_example_base';
  $handler->handler = 'panel_context';
  $handler->weight = 0;
  $handler->conf = array(
  'title' => 'Panel',
  'no_blocks' => FALSE,
  'css_id' => '',
  'css' => '',
  'contexts' => array(),
  'relationships' => array(),
  );
  $display = new panels_display;
  $display->layout = 'onecol';
  $display->layout_settings = array();
  $display->panel_settings = array();
  $display->cache = array();
  $display->title = '';
  $display->hide_title = FALSE;
  $display->content = array();
  $display->panels = array();
  $pane = new stdClass;
  $pane->pid = 'new-1';
  $pane->panel = 'middle';
  $pane->type = 'custom';
  $pane->subtype = 'custom';
  $pane->shown = TRUE;
  $pane->access = array();
  $pane->configuration = array(
    'title' => 'Use this page with an argument',
    'body' => 'This demo page works if you use an argument, like <a href="ctools_plugin_example/xxxxx">ctools_plugin_example/xxxxx</a>.',
    'format' => '1',
    'substitute' => NULL,
  );
  $pane->cache = array();
  $pane->style = array();
  $pane->css = array();
  $pane->extras = array();
  $pane->position = 0;
  $display->content['new-1'] = $pane;
  $display->panels['middle'][0] = 'new-1';
  $handler->conf['display'] = $display;
  $page->default_handlers[$handler->name] = $handler;
  // end exported panel.

  $pages['base_page'] = $page;

  return $pages;
}