Index: branches/5.2.x/core/units/spam_reports/spam_reports_config.php =================================================================== diff -u -N -r15012 -r15022 --- branches/5.2.x/core/units/spam_reports/spam_reports_config.php (.../spam_reports_config.php) (revision 15012) +++ branches/5.2.x/core/units/spam_reports/spam_reports_config.php (.../spam_reports_config.php) (revision 15022) @@ -31,10 +31,12 @@ 'spam_report_list' => Array ( 'prefixes' => Array ('spam-report_List'), 'format' => "!la_title_SpamReports!", + 'toolbar_buttons' => Array ('edit', 'delete', 'view'), ), 'spam_report_edit' => Array ( 'prefixes' => Array ('spam-report'), 'format' => "#spam-report_status# '#spam-report_titlefield#'", + 'toolbar_buttons' => Array ('select', 'cancel', 'reset_edit', 'delete'), ), ), Index: branches/5.2.x/admin/system_presets/simple/spam_reports_spam-report.php =================================================================== diff -u -N --- branches/5.2.x/admin/system_presets/simple/spam_reports_spam-report.php (revision 0) +++ branches/5.2.x/admin/system_presets/simple/spam_reports_spam-report.php (revision 15022) @@ -0,0 +1,51 @@ + Array ('edit', 'delete', 'view', 'dbl-click'), + ); + + // fields to hide + $hidden_fields = Array ( + /*'ReportId', 'ItemPrefix', 'ItemId', 'MessageText', 'ReportedOn', 'ReportedById',*/ + ); + + // virtual fields to hide + $virtual_hidden_fields = Array ( + /*'ItemName', 'ReportedBy',*/ + ); + + // fields to make required + $required_fields = Array ( + /*'ReportId', 'ItemPrefix', 'ItemId', 'MessageText', 'ReportedOn', 'ReportedById',*/ + ); + + // virtual fields to make required + $virtual_required_fields = Array ( + /*'ItemName', 'ReportedBy',*/ + ); + + // tabs during editing + $hide_edit_tabs = Array ( + + ); + + // hide columns in grids + $hide_columns = Array ( +// currently not in user + 'Default' => Array (/* 'ReportId', 'ItemPrefix', 'ItemId', 'MessageText', 'ReportedOn', 'ReportedBy' +, 'ItemName', */), + ); \ No newline at end of file