A simple rate plugin. Just install the plugin and add to the object view (blog view for example):
elgg_view('rate/rate', array('entity'=> $vars['entity']));
Enjoy it!
And report feedback please :)
Screenshots:
View Miguel Montes's plugins
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
I've added this to my TidyPics.
The code
elgg_view('rate/rate', array('entity'=> $vars['entity']));
//don't let the owner of the entity vote on stuff they own
if($viewer->guid == $entity->owner_guid) {
return false;
}
i have worked, but how can I add rate function or show rating to river dashboard?