diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 11:45:37 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 11:45:37 +0000 |
commit | 9c7945b097038f6119cbe0c1a18c65411d2cb38a (patch) | |
tree | 1c7e096e435b3fac59ae941ebfc28a39eb096181 /views/default/friends/collection.php | |
parent | 942539d2865be193f93dd44c9c0ee44f25fbc70b (diff) | |
download | elgg-9c7945b097038f6119cbe0c1a18c65411d2cb38a.tar.gz elgg-9c7945b097038f6119cbe0c1a18c65411d2cb38a.tar.bz2 |
the beginnings of the tabbed friends picker
git-svn-id: https://code.elgg.org/elgg/trunk@1592 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/friends/collection.php')
-rw-r--r-- | views/default/friends/collection.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/friends/collection.php b/views/default/friends/collection.php index b42b4467a..a9f2a392f 100644 --- a/views/default/friends/collection.php +++ b/views/default/friends/collection.php @@ -28,13 +28,13 @@ //as collections are private, check that the logged in user is the owner
if($coll->owner_guid == $_SESSION['user']->getGUID())
- echo "<div class=\"friends_collections_controls\"> (<a href=\"" . $vars['url'] . "mod/friends/edit.php?collection={$coll->id}\">" . elgg_echo('edit') . "</a>) (<a href=\"" . $vars['url'] . "action/friends/deletecollection?collection={$coll->id}\">" . elgg_echo('delete') . "</a>)";
+ echo "<div class=\"friends_collections_controls\"> <a href=\"" . $vars['url'] . "action/friends/deletecollection?collection={$coll->id}\" class=\"delete_collection\"><img src=\"" . $vars['url'] ."_graphics/icon_customise_remove.gif\"/></a>";
echo "</div>";
echo $coll->name;
echo " ({$count}) </h2>";
- // Ben - this is where the friends picker view needs to go
+ // individual collection panels
if($friends = $vars['collection']->entities){
$members = $vars['collection']->members;
echo elgg_view('friends/picker',array('entities' => $friends, 'value' => $members));
|