|
Elgg
Version 6.3
|
Go to the source code of this file.
Variables | |
| $items = elgg_extract('items', $vars) | |
| Gallery view. More... | |
| $pagination = elgg_extract('pagination', $vars, true) | |
| $position = elgg_extract('position', $vars, 'after') | |
| $list_classes = elgg_extract_class($vars, 'elgg-gallery', 'gallery_class') | |
| $item_classes = elgg_extract_class($vars, 'elgg-item', 'item_class') | |
| $nav = ($pagination) ? elgg_view('navigation/pagination', $vars) : '' | |
| $index = 0 | |
| $list_items = '' | |
| foreach($items as $item) if($position=='before'|| $position=='both') if(empty($list_items)) | else |
| $limit = elgg_extract('limit', $vars) | |
| $index = 0 |
Definition at line 40 of file gallery.php.
| $item_classes = elgg_extract_class($vars, 'elgg-item', 'item_class') |
Definition at line 36 of file gallery.php.
| $items = elgg_extract('items', $vars) |
Gallery view.
Implemented as an unorder list
@uses $vars['items'] Array of ElggEntity, ElggAnnotation or ElggRiverItem objects @uses $vars['offset'] Index of the first list item in complete list @uses $vars['limit'] Number of items per page @uses $vars['count'] Number of items in the complete list @uses $vars['pagination'] Show pagination? (default: true) @uses $vars['position'] Position of the pagination: before, after, or both @uses $vars['full_view'] Show the full view of the items (default: false) @uses $vars['gallery_class'] Additional CSS class for the
@uses $vars['item_class'] Additional CSS class for the elements @uses $vars['item_view'] Alternative view to render list items
Definition at line 19 of file gallery.php.
| $limit = elgg_extract('limit', $vars) |
Definition at line 79 of file gallery.php.
| $list_classes = elgg_extract_class($vars, 'elgg-gallery', 'gallery_class') |
Definition at line 34 of file gallery.php.
| $list_items = '' |
Definition at line 41 of file gallery.php.
| $nav = ($pagination) ? elgg_view('navigation/pagination', $vars) : '' |
Definition at line 38 of file gallery.php.
| $pagination = elgg_extract('pagination', $vars, true) |
Definition at line 20 of file gallery.php.
| $position = elgg_extract('position', $vars, 'after') |
Definition at line 21 of file gallery.php.
| foreach ( $items as $item) if ( $position=='before'||$position=='both') if (empty( $list_items)) else |
Definition at line 69 of file gallery.php.