serega3000 / elgg_gallery_field
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:elgg-plugin
Requires
This package is not auto-updated.
Last update: 2024-11-09 18:06:30 UTC
README
#Gallery field module for elgg 1.9, 1.10
This module allow you to add simple gallery to blog posts and pages.
In settings page you can select, enable or disable gallery for blogs or pages.
##Installing
###Using composer
composer require serega3000/elgg_gallery_field:dev-master
###Manually
Copy all files from this repository to folder mod/gallery_field of your Elgg installation
##Adding to your module
If you writing your own module, you can simply add gallery to your entity view:
$body .= elgg_view('gallery_field/images_list', array(
'entity' => $entity,
));
Or you can extend any entity view.
elgg_extend_view('object/blog', 'gallery_field/images_list');