Projet

Général

Profil

Paste
Télécharger (2,39 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / advanced_forum / includes / panels / forum_panel_context_container.handler @ c169e7c4

1
<?php
2

    
3
$handler = new stdClass();
4
$handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */
5
$handler->api_version = 1;
6
$handler->name = 'forum_panel_context_container';
7
$handler->task = 'forum';
8
$handler->subtask = '';
9
$handler->handler = 'panel_context';
10
$handler->weight = 1;
11
$handler->conf = array(
12
  'title' => 'Container',
13
  'no_blocks' => 0,
14
  'css_id' => 'forum',
15
  'css' => '',
16
  'contexts' => array(),
17
  'relationships' => array(),
18
  'access' => array(
19
    'plugins' => array(
20
      0 => array(
21
        'name' => 'forum_container',
22
        'settings' => array(
23
          'container' => '0',
24
        ),
25
        'context' => 'argument_forum_id_1',
26
      ),
27
    ),
28
    'logic' => 'and',
29
  ),
30
  'pipeline' => 'standard',
31
);
32
if (module_exists('panels')) {
33
  $display = new panels_display();
34
  $display->layout = 'flexible';
35
  $display->layout_settings = array();
36
  $display->panel_settings = array(
37
    'style_settings' => array(
38
      'default' => NULL,
39
      'center' => NULL,
40
    ),
41
  );
42
  $display->cache = array();
43
  $display->title = '%forum:name';
44
  $display->content = array();
45
  $display->panels = array();
46
  $pane = new stdClass();
47
  $pane->pid = 'new-1';
48
  $pane->panel = 'center';
49
  $pane->type = 'forum_list';
50
  $pane->subtype = 'forum_list';
51
  $pane->shown = TRUE;
52
  $pane->access = array();
53
  $pane->configuration = array(
54
    'context' => 'argument_forum_id_1',
55
    'override_title' => 0,
56
    'override_title_text' => '',
57
  );
58
  $pane->cache = array();
59
  $pane->style = array(
60
    'settings' => NULL,
61
  );
62
  $pane->css = array();
63
  $pane->extras = array();
64
  $pane->position = 0;
65
  $pane->locks = '';
66
  $display->content['new-1'] = $pane;
67
  $display->panels['center'][0] = 'new-1';
68
  $pane = new stdClass();
69
  $pane->pid = 'new-2';
70
  $pane->panel = 'center';
71
  $pane->type = 'forum_legend';
72
  $pane->subtype = 'forum_legend';
73
  $pane->shown = TRUE;
74
  $pane->access = array();
75
  $pane->configuration = array(
76
    'context' => 'argument_forum_id_1',
77
    'override_title' => 0,
78
    'override_title_text' => '',
79
  );
80
  $pane->cache = array();
81
  $pane->style = array(
82
    'settings' => NULL,
83
  );
84
  $pane->css = array();
85
  $pane->extras = array();
86
  $pane->position = 1;
87
  $pane->locks = '';
88
  $display->content['new-2'] = $pane;
89
  $display->panels['center'][1] = 'new-2';
90
  $display->hide_title = PANELS_TITLE_FIXED;
91
  $display->title_pane = '0';
92
  $handler->conf['display'] = $display;
93
}