diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-18 13:02:23 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-18 13:02:23 +0000 |
commit | a12e51d597b5ca22af44609b778eca66ca681492 (patch) | |
tree | 1e4c45980e94bde578ca20dbfacd7289ee9696ba /mod/bookmarks | |
parent | cf0bd9e0381e77b1879f508c1a8fe62beb2899a8 (diff) | |
download | elgg-a12e51d597b5ca22af44609b778eca66ca681492.tar.gz elgg-a12e51d597b5ca22af44609b778eca66ca681492.tar.bz2 |
Included a view for plugins to extend (on the new reworked Bookmarks and Blogs).
git-svn-id: http://code.elgg.org/elgg/trunk@5435 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/bookmarks')
-rw-r--r-- | mod/bookmarks/add.php | 4 | ||||
-rw-r--r-- | mod/bookmarks/all.php | 11 | ||||
-rw-r--r-- | mod/bookmarks/friends.php | 9 | ||||
-rw-r--r-- | mod/bookmarks/index.php | 14 | ||||
-rw-r--r-- | mod/bookmarks/views/default/object/bookmarks.php | 2 |
5 files changed, 22 insertions, 18 deletions
diff --git a/mod/bookmarks/add.php b/mod/bookmarks/add.php index e5bc67a1a..7fe6e8956 100644 --- a/mod/bookmarks/add.php +++ b/mod/bookmarks/add.php @@ -46,10 +46,10 @@ if ($this_guid = get_input('bookmark',0)) { } $area3 = elgg_view('bookmarks/ownerblock'); +// include a view for plugins to extend +$area3 .= elgg_view("bookmarks/sidebar", array("object_type" => 'bookmarks')); // if logged in, get the bookmarklet $area3 .= elgg_view("bookmarks/bookmarklet"); -//include a view for plugins to extend -$area3 .= elgg_view("bookmarks/sidebar_options", array("object_type" => 'bookmarks')); // Format page $body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3); diff --git a/mod/bookmarks/all.php b/mod/bookmarks/all.php index 6b81378a7..88258c855 100644 --- a/mod/bookmarks/all.php +++ b/mod/bookmarks/all.php @@ -20,13 +20,14 @@ set_context('search'); $area2 .= list_entities('object','bookmarks'); set_context('bookmarks'); +// include a view for plugins to extend +$area3 = elgg_view("bookmarks/sidebar", array("object_type" => 'bookmarks')); + // if logged in, get the bookmarklet -if(isloggedin()){ - $area3 = elgg_view("bookmarks/bookmarklet"); +if(isloggedin()){ + $area3 .= elgg_view("bookmarks/bookmarklet"); } -//include a view for plugins to extend -$area3 .= elgg_view("bookmarks/sidebar_options", array("object_type" => 'bookmarks')); -//include stats +// include statistics $area3 .= elgg_view("bookmarks/stats"); // Format page $body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3); diff --git a/mod/bookmarks/friends.php b/mod/bookmarks/friends.php index c4e3e3c58..158108553 100644 --- a/mod/bookmarks/friends.php +++ b/mod/bookmarks/friends.php @@ -20,12 +20,13 @@ set_context('search'); $area2 .= list_user_friends_objects(page_owner(),'bookmarks',10,false,false); set_context('bookmarks'); -// sidebar options -$area3 = elgg_view("bookmarks/sidebar_options", array("object_type" => 'bookmarks')); +// include a view for plugins to extend +$area3 = elgg_view("bookmarks/sidebar", array("object_type" => 'bookmarks')); // if logged in, get the bookmarklet -$area3 .= elgg_view("bookmarks/bookmarklet"); - +if(isloggedin()){ + $area3 .= elgg_view("bookmarks/bookmarklet"); +} // Format page $body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3); diff --git a/mod/bookmarks/index.php b/mod/bookmarks/index.php index 55f854121..0b8508cc9 100644 --- a/mod/bookmarks/index.php +++ b/mod/bookmarks/index.php @@ -42,14 +42,14 @@ set_context('bookmarks'); //if the logged in user is not looking at their stuff, display the ownerblock if(page_owner() != get_loggedin_user()->guid){ $area3 = elgg_view('bookmarks/ownerblock'); -}else{ - if(isloggedin()){ - // if logged in, get the bookmarklet - $area3 .= elgg_view("bookmarks/bookmarklet"); - } } -//include a view for plugins to extend -$area3 .= elgg_view("bookmarks/sidebar_options", array("object_type" => 'bookmarks')); +// include a view for plugins to extend +$area3 .= elgg_view("bookmarks/sidebar", array("object_type" => 'bookmarks')); + +if(isloggedin()){ + // if logged in, get the bookmarklet + $area3 .= elgg_view("bookmarks/bookmarklet"); +} // Format page $body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3); diff --git a/mod/bookmarks/views/default/object/bookmarks.php b/mod/bookmarks/views/default/object/bookmarks.php index fa5d6e30a..fbb00e545 100644 --- a/mod/bookmarks/views/default/object/bookmarks.php +++ b/mod/bookmarks/views/default/object/bookmarks.php @@ -63,6 +63,8 @@ $delete .= "<span class='delete_button'>" . elgg_view('output/confirmlink',array //include edit and delete options if($vars['entity']->canEdit()){ $info .= "<span class='entity_edit'><a href=\"{$vars['url']}pg/bookmarks/{$owner->username}/edit/{$vars['entity']->getGUID()}\">" . elgg_echo('edit') . "</a></span>"; + // include a view for plugins to extend + $info .= elgg_view("bookmarks/options",array('entity' => $vars['entity'])); $info .= $delete; } $info .= "</div>"; |