Hi everyone!
I'm researching Group plugin. At line 57 of start,php:
elgg_extend_view('groups/tool_latest', 'groups/profile/activity_module');
And I can't find"groups/tool_lastest", I don't know where it is,
Please help me find it out !
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.
- GeorgeB.@G.B.

GeorgeB. - 0 likes
- iconMatrix@SteveAquila

iconMatrix - 0 likes
- GeorgeB.@G.B.

GeorgeB. - 0 likes
- iconMatrix@SteveAquila

iconMatrix - 0 likes
- ihayredinov@ihayredinov

ihayredinov - 0 likes
- ihayredinov@ihayredinov

ihayredinov - 0 likes
- Paweł Sroka@srokap

Paweł Sroka - 0 likes
- ihayredinov@ihayredinov

ihayredinov - 0 likes
- Dries@driesdk

Dries - 0 likes
- ihayredinov@ihayredinov

ihayredinov - 0 likes
You must log in to post replies.I want to know that too!
I think I can find it, let me help you as I know how hard is is to open Google Group tools
Hi Steve!
I've tried that google search already, as I'm trying to figure out how to change the order that the widgets appear on the group profile page... However I couldn't figure it out yet.
I know there are plugins designed to change the group layout, but I couldn't find any for elgg 1.8.
Is there a way for me to change this order by editing the "groups" plugin bundled with elgg 1.8?
thanks! :)
looks like Jerome is working on his latest release for 1.8. Why not ask him?
Views don't need to exist as physical files to be extended. Look for elgg_extend_view in individual plugins that have modules. Also enable developer tools view wrapping to see view location in rendered html
Also you can dump $CONFIG->views. That's where you will see all of it
Read the friendly manual: http://docs.elgg.org/wiki/Views
You can also take a look at this for an example of how to reorder extending views: http://community.elgg.org/plugins/1520344/1.0/group-tools-priority
You can always use elgg_unextend_view() to remove the views that you do not want to display.
What am I missing? Are you still searching for the physical location of that view or not?
If you have the shipped plugin 'developer tools' installed, just: develop: tools > inspect >views (submit) and then scroll down untill you find 'groups/tool_latest' click the little arrow and see where the physical view (or views if others are extending or overriding) is.
And you can always add the view to your own plugin if you really want it to have a physical location. You can then put your logic in there. But as Pawel suggested, you should really read up on the Elgg's views system. It's the pillar of Elgg, and if you don't understand how it works, you will have serious trouble moving on.