| 1 |
|
<?php |
| 2 |
|
// $Id$ |
| 3 |
|
|
| 4 |
|
/** |
| 5 |
|
* @file |
| 6 |
|
* Default theme implementation to show content that requires moderation |
| 7 |
|
* |
| 8 |
|
* * Available variables: |
| 9 |
|
* - $reports: An array of reports |
| 10 |
|
* |
| 11 |
|
* @see template_preprocess() |
| 12 |
|
* @see template_preprocess_abuse_page() |
| 13 |
|
*/ |
| 14 |
|
?> |
| 15 |
<div id="message-wrapper" class="message status"></div> |
<div id="message-wrapper" class="message status"></div> |
| 16 |
<ul class="abuse-report-list"> |
<ul class="abuse-report-list"> |
| 17 |
<?php foreach ($reports as $report): ?> |
<?php foreach ($reports as $report): ?> |
| 20 |
</ul> |
</ul> |
| 21 |
|
|
| 22 |
<?php // hide the controls for the main abuse page on the individual ticket page ?> |
<?php // hide the controls for the main abuse page on the individual ticket page ?> |
| 23 |
<?php if(!preg_match('/^admin\/abuse\/status/i', $_REQUEST['q'])): ?> |
<?php if (!preg_match('/^admin\/abuse\/status/i', $_REQUEST['q'])): ?> |
| 24 |
<div id="abuse-report-list-controls"> |
<div id="abuse-report-list-controls"> |
| 25 |
<?php print l(t('Get More Tickets'), $_REQUEST['q']); ?> |
<?php print l(t('Get More Tickets'), $_REQUEST['q']); ?> |
| 26 |
</div> |
</div> |