first commit
[step2_drupal.git] / og / modules / og_views / views / og.og_members_faces.view
blob2d88b7d8cf7e5efded7fe9d72ce833c0fe7998d9
1 <?php
2 // $Id: og.og_members_faces.view,v 1.2 2008/10/29 20:00:02 dww Exp $
4 $view = new view;
5 $view->name = 'og_members_faces';
6 $view->description = 'Member listing in grid with user pictures';
7 $view->tag = 'og';
8 $view->view_php = '';
9 $view->base_table = 'users';
10 $view->is_cacheable = '0';
11 $view->api_version = 2;
12 $view->disabled = FALSE; // Edit this to true to make a default view disabled initially
13 $view->display = array();
14   $display = new views_display;
15   $display->id = 'default';
16   $display->display_title = 'Defaults';
17   $display->display_plugin = 'default';
18   $display->position = '1';
19   $display->display_options = array(
20   'style_plugin' => 'grid',
21   'style_options' => array(
22     'columns' => '5',
23     'alignment' => 'horizontal',
24   ),
25   'row_plugin' => 'fields',
26   'row_options' => array(
27     'inline' => array(
28       'name' => 'name',
29       'is_manager' => 'is_manager',
30       'is_admin' => 'is_admin',
31     ),
32     'separator' => '',
33   ),
34   'relationships' => array(),
35   'fields' => array(
36     'picture' => array(
37       'id' => 'picture',
38       'table' => 'users',
39       'field' => 'picture',
40       'label' => '',
41       'relationship' => 'none',
42     ),
43     'name' => array(
44       'id' => 'name',
45       'table' => 'users',
46       'field' => 'name',
47       'label' => '',
48       'link_to_user' => 1,
49       'relationship' => 'none',
50     ),
51     'is_admin' => array(
52       'id' => 'is_admin',
53       'table' => 'og_uid',
54       'field' => 'is_admin',
55       'label' => '',
56       'relationship' => 'none',
57     ),
58   ),
59   'sorts' => array(
60     'is_admin' => array(
61       'id' => 'is_admin',
62       'table' => 'og_uid',
63       'field' => 'is_admin',
64       'order' => 'DESC',
65       'relationship' => 'none',
66     ),
67     'name' => array(
68       'id' => 'name',
69       'table' => 'users',
70       'field' => 'name',
71       'order' => 'ASC',
72       'relationship' => 'none',
73     ),
74   ),
75   'arguments' => array(
76     'nid' => array(
77       'id' => 'nid',
78       'table' => 'og_uid',
79       'field' => 'nid',
80       'default_action' => 'not found',
81       'style_plugin' => 'default_summary',
82       'style_options' => array(
83         'count' => TRUE,
84         'override' => FALSE,
85         'items_per_page' => 25,
86       ),
87       'wildcard' => 'all',
88       'wildcard_substitution' => 'All',
89       'title' => 'Members of %1',
90       'default_argument_type' => 'fixed',
91       'default_argument' => '',
92       'validate_type' => 'og_group_types',
93       'validate_fail' => 'not found',
94       'break_phrase' => 0,
95       'add_table' => 0,
96       'relationship' => 'none',
97       'default_argument_user' => 0,
98       'default_argument_fixed' => '',
99       'default_argument_php' => '',
100       'validate_argument_node_type' => array(
101         'blog' => 0,
102         'poll' => 0,
103         'book' => 0,
104         'group1' => 0,
105         'group2' => 0,
106         'page' => 0,
107         'story' => 0,
108       ),
109       'validate_argument_node_access' => 0,
110       'validate_argument_nid_type' => 'nid',
111       'validate_argument_vocabulary' => array(
112         '1' => 0,
113         '2' => 0,
114         '3' => 0,
115         '4' => 0,
116       ),
117       'validate_argument_type' => 'tid',
118       'validate_argument_php' => '',
119       'require_value' => 0,
120       'reduce_duplicates' => 0,
121       'validate_argument_is_member' => 1,
122       'not' => 0,
123     ),
124   ),
125   'filters' => array(
126     'status' => array(
127       'id' => 'status',
128       'table' => 'users',
129       'field' => 'status',
130       'operator' => '=',
131       'value' => 1,
132       'group' => 0,
133       'exposed' => FALSE,
134       'expose' => array(
135         'operator' => FALSE,
136         'label' => '',
137       ),
138       'relationship' => 'none',
139       'expose_button' => array(
140         'button' => 'Expose',
141       ),
142     ),
143     'is_active' => array(
144       'id' => 'is_active',
145       'table' => 'og_uid',
146       'field' => 'is_active',
147       'operator' => '=',
148       'value' => 1,
149       'group' => 0,
150       'exposed' => FALSE,
151       'expose' => array(
152         'operator' => FALSE,
153         'label' => '',
154       ),
155       'relationship' => 'none',
156       'expose_button' => array(
157         'button' => 'Expose',
158       ),
159     ),
160   ),
161   'items_per_page' => 25,
162   'use_pager' => '1',
163   'pager_element' => 0,
164   'offset' => 0,
165   'empty' => '',
166   'empty_format' => '1',
167   'distinct' => 0,
168   'use_ajax' => '1',
169   'title' => 'Group faces',
171 $view->display['default'] = $display;