Log in

View Full Version : Administrative and Maintenance Tools - Edit infraction points/expiration (3.6-4.x)


MoMan
11-08-2010, 10:00 PM
This mod will allow you to edit the expiration date and points of infractions through your admin panel. The stock vbulletin installation only supports reversal and deletion, so I think this is a handy addition if you frequently use infractions on your forum. In case someone screws up and adds too many points, issues an infraction instead of a warning, or sets the duration too high, you can use this to make a discrete edit without having to delete and then re-issue the infraction.

This mod doesn't support the editing of other parameters as I didn't see a need for that. If you'd like to add further functionality on your own, you're welcome to modify and re-post this code as long as you give attribution.

Should work with vB 3.6.x and above!

Note: this mod requires additions directly to vbulletin code. I don't recommend you proceed unless you are comfortable with editing PHP files.

Open /admincp/admininfraction.php

Add above print_cp_footer():
// ###################### Start Edit Infraction #######################
if ($_REQUEST['do'] == 'editinfraction')
{
$vbulletin->input->clean_array_gpc('r', array(
'infractionid' => TYPE_UINT,
'points' => TYPE_UINT,
'expires' => TYPE_ARRAY,
'submit' => TYPE_UINT
));

if ($infraction = $db->query_first("
SELECT infraction.*
FROM " . TABLE_PREFIX . "infraction AS infraction
WHERE infractionid = " . $vbulletin->GPC['infractionid']
))
{
// Are we submitting or editing?
if ($vbulletin->GPC['submit'])
{
// Clean up the points
$points = $vbulletin->GPC['points'];
if ($points < 0)
{
$points = $infraction['points'];
}

// Clean up the expiration date
$expires = mktime($vbulletin->GPC['expires']['hour'], $vbulletin->GPC['expires']['minute'], 0, $vbulletin->GPC['expires']['month'], $vbulletin->GPC['expires']['day'], $vbulletin->GPC['expires']['year']);
if ($expires < $infraction['dateline'])
{
$expires = $infraction['dateline'];
}

// Update the infraction
$infdata =& datamanager_init('Infraction', $vbulletin, ERRTYPE_STANDARD);
$infdata->set_existing($infraction);
$infdata->set('points', $points);
$infdata->set('expires', $expires);
$infdata->save();

// Print message
print_cp_message($vbphrase['redirecting'], 'admininfraction.php?do=details&infractionid=' . $infraction['infractionid'], 5, '', true);
}
else
{
// Print input fields
print_form_header('admininfraction','editinfractio n');
construct_hidden_code('infractionid',$infraction['infractionid']);
construct_hidden_code('submit', 1);
print_table_header($vbphrase['edit'] . ' ' . $vbphrase['infraction'] . ' ' . $infraction['infractionid']);
print_time_row($vbphrase['expires'], 'expires', $infraction['expires']);
print_input_row($vbphrase['points'], 'points', $infraction['points']);
print_hidden_fields();
print_submit_row($vbphrase['submit']);
print_table_footer();
}
}
else
{
print_stop_message('no_matches_found');
}
}

Find:
' ' . construct_link_code($vbphrase['infraction_view'], "admininfraction.php?" . $vbulletin->session->vars['sessionurl'] . "do=details&infractionid=$infraction[infractionid]", false, '', true) .


Add below:
' ' . construct_link_code($vbphrase['edit'], "admininfraction.php?" . $vbulletin->session->vars['sessionurl'] . "do=editinfraction&infractionid=$infraction[infractionid]", false, '', true) .


Find:
if (!empty($infraction['note']))
{
print_label_row($vbphrase['administrative_note'], $infraction['note']);
}


Add below:
print_label_row($vbphrase['edit'],construct_link_code($vbphrase['edit'], "admininfraction.php?" . $vbulletin->session->vars['sessionurl'] . "do=editinfraction&infractionid=$infraction[infractionid]"));

mitch84
11-10-2010, 04:27 AM
nice, tagged but I think you should put modification in a file text for download

Hornstar
11-11-2010, 09:31 AM
So many times this would have come in handy lol. I wish this was default ^^

Thanks.

diddy29
11-22-2012, 02:46 AM
Installed on 4.1.3. Seems to work well at the moment.

I can't believe this hasn't come as a default setting.

It was a bit of a pain though, editing admininfraction.php.