2 personman Apr 19, 2006 02:28

What about the delete link?
<?php
$baseDomain = preg_replace("/http:\/\//i", "", $Comment->author_url);
$baseDomain = preg_replace("/^www\./i", "", $baseDomain);
$baseDomain = preg_replace("/\/.*/i", "", $baseDomain);
?>
<a href="<?php echo $baseurl.'/'.$admin_subdir.'/'; ?>b2antispam.php?action=ban&keyword=<?php echo urlencode($baseDomain) ?>"><img src="img/noicon.gif" class="middle" alt="<?php echo /* TRANS: Abbrev. */ T_('Ban') ?>" title="<?php echo T_('Ban this domain!') ?>" /></a>
¥
Sweet. Don't forget to wrap that in some kind of statement that checks the user level or something so you don't show the ban button to everyone. Not that they would be able to delete comments without the proper backoffice credentials, but you don't want to confuse them with an icon that they can't use.
Here's what I ended up using:
<?php
if (is_logged_in()) {
if (!empty($Comment->author_url) && ($Comment->author_url != 'http://') && ($current_User->check_perm( 'spamblacklist', 'edit' ) ) ) {
$baseDomain = preg_replace("/http:\/\//i", "", $Comment->author_url);
$baseDomain = preg_replace("/^www\./i", "", $baseDomain);
$baseDomain = preg_replace("/\/.*/i", "", $baseDomain);
?>
<a href="<?php echo $baseurl.'/'.$admin_subdir.'/'; ?>b2antispam.php?action=ban&keyword=<?php echo urlencode($baseDomain) ?>"><img src="img/noicon.gif" class="middle" alt="<?php echo /* TRANS: Abbrev. */ T_('Ban') ?>" title="<?php echo T_('Ban this domain!') ?>" /></a>
<?php } } ?>
If you were going to "emulate" the code in admin (which is where I got the above from) add "&& $current_User->check_perm( 'spamblacklist', 'edit' )" to the if statement.
Which of course is what I should have done in the first place :p
¥
You do have to have the is_logged_in() check first or it will give a big fat error when you try some check on Current_user and there isn't one.
add
but yeah, it'd need to go after "is_logged_in()" ;)
¥
Where should I paste the code?
I put it under this:
<?php $Item->edit_link( ' • ' ) // Link to backoffice for editing ?>
But nothing happend. =/
That's the right spot. It will only add the icon if you're logged in, you have permission to edit the blacklist, and the comment author is not a logged in member and they leave a url (not just "http://").
Well I put it here but still not icons. Nearly every comment fits into this criteria. I am also logged in as admin and so on.
<?php $Item->edit_link( ' • ' ) // Link to backoffice for editing ?>
<?php
if (is_logged_in()) {
if (!empty($Comment->author_url) && ($Comment->author_url != 'http://') && ($current_User->check_perm( 'spamblacklist', 'edit' ) ) ) {
$baseDomain = preg_replace("/http:\/\//i", "", $Comment->author_url);
$baseDomain = preg_replace("/^www\./i", "", $baseDomain);
$baseDomain = preg_replace("/\/.*/i", "", $baseDomain);
?>
<a href="<?php echo $baseurl.'/'.$admin_subdir.'/'; ?>b2antispam.php?action=ban&keyword=<?php echo urlencode($baseDomain) ?>"><img src="img/noicon.gif" class="middle" alt="<?php echo /* TRANS: Abbrev. */ T_('Ban') ?>" title="<?php echo T_('Ban this domain!') ?>" /></a>
<?php } } ?>
<?php $Item->trackback_rdf() // trackback autodiscovery information ?>
</div>
Ups! Sorry! This code had to go into the _feedback.php. My fault! Sorry for disturbing you. THanx! =)
*acts disturbed*
*stops acting*
Damn, no difference huh? :p
Glad you've solved it ;)
¥
I don't thing there's anything like that to add a ban button. It would be nice, though.