Currently list subscriptions are in the main user profile. Can the list subscription information be moved from the main /user/edit screen to a tab of the user edit screen?
If a site has dozens of lists it will be easier to administer your own list subscriptions from a separate tab.
Comments
Comment #1
arthurf commentedI think this should be handled with the published status. This can be handled easily in mlm.inc on line 693 by looking at each list's status:
if ($l->status != 0) {
$form['mlm_options']['mlm_lists'][$l->nid] = array(
'#type' => 'checkbox',
'#default_value' => (int) $l->subscribed,
'#title' => l($l->title, 'node/'.$l->nid),
'#prefix' => '
'#suffix' => '
',
'#description' => $l->teaser,
);
}
I haven't included this patch because it will be part of an additional patch which will have the visibility settings on the admin page.
Comment #2
allie mickaYou must have wanted this badly, since it's in at least 3 issues and 2 patches! :P
Closed though.