aboutsummaryrefslogtreecommitdiff
path: root/mod/developers/views/default/theme_preview/components.php
blob: 45f520f2c32175c064fa9516a780ba3efc4ea4f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * CSS Objects: list, module, image_block, table, messages
 */

$body = elgg_view('theme_preview/components/image_block');
echo elgg_view_module('info', 'Image Block (.elgg-image-block)', $body);

$body = elgg_view('theme_preview/components/list');
echo elgg_view_module('info', 'List (.elgg-list)', $body);

$body = elgg_view('theme_preview/components/table', array('class' => 'elgg-table'));
echo elgg_view_module('info', 'Table (.elgg-table)', $body);

$body = elgg_view('theme_preview/components/table', array('class' => 'elgg-table-alt'));
echo elgg_view_module('info', 'Table Alternate (.elgg-table-alt)', $body);

$body = elgg_view('theme_preview/components/messages');
echo elgg_view_module('info', 'Messages (.elgg-message)', $body);