From 9b4df5056f2dba6b6fa7ac392c2114fd3c1400a0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 8 Dec 2008 00:55:11 -0500 Subject: add block form to subscribers list and profile page I added a small form for blocking users to profiles in the profile list, and also to the profile page. I also added an action to handle the results of blocking someone. This required some changes to the profile list class (so I could add the block form), so I made them. And the gallery class lets its subclasses return a subclass of ProfileList for their profile list. darcs-hash:20081208055511-5ed1f-e2e09986bd3b9cbb6a00a0c6b94f49ea78b7bdab.gz --- actions/subscribers.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'actions/subscribers.php') diff --git a/actions/subscribers.php b/actions/subscribers.php index 2e37e0315..253d8440d 100644 --- a/actions/subscribers.php +++ b/actions/subscribers.php @@ -47,4 +47,14 @@ class SubscribersAction extends GalleryAction { function get_other(&$subs) { return $subs->subscriber; } -} \ No newline at end of file + + function profile_list_class() { + return 'SubscribersList'; + } +} + +class SubscribersList extends ProfileList { + function show_owner_controls($profile) { + common_block_form($profile); + } +} -- cgit v1.2.3-54-g00ecf