123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <?
- /*
- * The $Types array is the backbone of the reports system and is stored here so it can
- * be included on the pages that need it without clogging up the pages that don't.
- * Important thing to note about the array:
- * 1. When coding for a non music site, you need to ensure that the top level of the
- * array lines up with the $Categories array in your config.php.
- * 2. The first sub array contains resolves that are present on every report type
- * regardless of category.
- * 3. The only part that shouldn't be self-explanatory is that for the tracks field in
- * the report_fields arrays, 0 means not shown, 1 means required, 2 means required but
- * you can't select the 'All' box.
- * 4. The current report_fields that are set up are tracks, sitelink, link and image. If
- * you wanted to add a new one, you'd need to add a field to the reportsv2 table, elements
- * to the relevant report_fields arrays here, add the HTML in ajax_report and add security
- * in takereport.
- */
-
- $Types = array(
- 'master' => array(
- 'dupe' => array(
- 'priority' => '10',
- 'reason' => '0',
- 'title' => 'Dupe',
- 'report_messages' => array(
- 'Please specify a link to the original torrent.'
- ),
- 'report_fields' => array(
- 'sitelink' => '1'
- ),
- 'resolve_options' => array(
- 'upload' => '0',
- 'warn' => '0',
- 'delete' => '1',
- 'pm' => '[rule]r1.1.3[/rule]. Your torrent was reported becasue it was a duplicate of another torrent.'
- )
- ),
- 'banned' => array(
- 'priority' => '230',
- 'reason' => '14',
- 'title' => 'Specifically Banned',
- 'report_messages' => array(
- 'Please specify exactly which entry on the Do Not Upload list this is violating.'
- ),
- 'report_fields' => array(
- ),
- 'resolve_options' => array(
- 'upload' =>' 0',
- 'warn' => '4',
- 'delete' => '1',
- 'pm' => '[rule]h1.3[/rule]. You have uploaded material that is currently forbidden. Items on the Do Not Upload (DNU) list (at the top of the [url='.site_url().'upload.php]upload page[/url]) and in the [url='.site_url().'rules.php?p=upload#h1.3]Specifically Banned[/url] portion of the uploading rules cannot be uploaded to the site. Do not upload them unless your torrent meets a condition specified in the comments of the DNU list.
- Your torrent was reported because it contained material from the DNU list or from the Specifically Banned section of the rules.'
- )
- ),
- 'urgent' => array(
- 'priority' => '280',
- 'reason' => '-1',
- 'title' => 'Urgent',
- 'report_messages' => array(
- 'This report type is only for very urgent reports, usually for personal information being found within a torrent.',
- 'Abusing the "Urgent" report type could result in a warning or worse.',
- 'As this report type gives the staff absolutely no information about the problem, please be as clear as possible in your comments about what the problem is.'
- ),
- 'report_fields' => array(
- 'sitelink' => '0',
- 'link' => '0',
- 'image' => '0',
- ),
- 'resolve_options' => array(
- 'upload' => '0',
- 'warn' => '0',
- 'delete' => '0',
- 'pm' => ''
- )
- ),
- 'trump' => array(
- 'priority' => '20',
- 'reason' => '1',
- 'title' => 'Trump',
- 'report_messages' => array(
- 'Please list the specific reason(s) the newer torrent trumps the older one.',
- 'Please make sure you are reporting the torrent <strong class="important_text">which has been trumped</strong> and should be deleted, not the torrent that you think should remain on site.'
- ),
- 'report_fields' => array(
- 'sitelink' => '1'
- ),
- 'resolve_options' => array(
- 'upload' => '0',
- 'warn' => '0',
- 'delete' => '1',
- 'pm' => 'Your torrent was reported because it was trumped by another torrent.'
- )
- ),
- 'notporn' => array(
- 'priority' => '100',
- 'reason' => '-1',
- 'title' => 'Not Pornographic',
- 'report_messages' => array(
- 'This report type is for reporting torrents that are not pornographic.'
- ),
- 'report_fields' => array(
- ),
- 'resolve_options' => array(
- 'upload' => '0',
- 'warn' => '0',
- 'delete' => '1',
- 'pm' => '[rule]r1.1.2[/rule]. Your torrent was reported beacuse it was not pornographic. All torrents on '.site_url().' must be pornographic.'
- )
- ),
- 'lang' => array(
- 'priority' => '100',
- 'reason' => '-1',
- 'title' => 'Disallowed Language',
- 'report_messages' => array(
- 'This report type is for reporting torrent that contain no Japanese or English language content.'
- ),
- 'report_fields' => array(
- ),
- 'resolve_options' => array(
- 'upload' => '0',
- 'warn' => '0',
- 'delete' => '1',
- 'pm' => '[rule]r1.1.7[/rule]. Your torrent was reported because it contained neither Japanese nor English text/audio.'
- )
- ),
- 'metadata' => array(
- 'priority' => '100',
- 'reason' => '-1',
- 'title' => 'Incorrect Metadata',
- 'report_messages' => array(
- 'This report type is for reporting improperly/incorrectly tagged torrents.',
- 'Please describe what changes need to be made to the metadata.'
- ),
- 'report_fields' => array(
- ),
- 'resolve_options' => array(
- 'upload' => '0',
- 'warn' => '0',
- 'delete' => '0',
- 'pm' => 'Your torrent was reported for having incorrect metadata.'
- )
- ),
- 'other' => array(
- 'priority' => '200',
- 'reason' => '-1',
- 'title' => 'Other',
- 'report_messages' => array(
- 'Please include as much information as possible to verify the report.'
- ),
- 'report_fields' => array(
- ),
- 'resolve_options' => array(
- 'upload' => '0',
- 'warn' => '0',
- 'delete' => '0',
- 'pm' => ''
- )
- )
- ),
- '1' => array(
- ),
- '2' => array(
- ),
- '3' => array(
- ),
- '4' => array(
- 'install' => array(
- 'priority' => '100',
- 'reason' => '-1',
- 'title' => 'Unclear Installation Process',
- 'report_messages' => array(
- 'This report type is for reporting game torrents with vague or unclear installation or usage instructions.',
- 'Please describe the issue in detail.'
- ),
- 'report_fields' => array(
- ),
- 'resolve_options' => array(
- 'upload' => '0',
- 'warn' => '0',
- 'delete' => '0',
- 'pm' => '[rule]4.1.5[/rule]. Your torrent was reported because the usage or installation instructions were vague or unclear.'
- )
- ),
- 'nocrack' => array(
- 'priority' => '100',
- 'reason' => '-1',
- 'title' => 'DRM Without Crack',
- 'report_messages' => array(
- 'This report type is for reporting game torrents that contain DRM, but do not include a crack.'
- ),
- 'report_fields' => array(
- ),
- 'resolve_options' => array(
- 'upload' => '0',
- 'warn' => '1',
- 'delete' => '1',
- 'pm' => '[rule]r4.1.3[/rule]. Your torrent was reported because it contained DRM, but did not include a crack.'
- )
- )
- )
- );
|