addItem(__('Antispam'),'plugin.php?p=antispam','index.php?pf=antispam/icon.png', preg_match('/plugin.php\?p=antispam(&.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->check('admin',$core->blog->id)); $core->addBehavior('coreAfterCommentUpdate',array('dcAntispam','trainFilters')); $core->addBehavior('adminAfterCommentDesc',array('dcAntispam','statusMessage')); $core->addBehavior('adminDashboardIcons',array('dcAntispam','dashboardIcon')); $core->addBehavior('adminDashboardFavs','antispamDashboardFavs'); $core->addBehavior('adminDashboardFavsIcon','antispamDashboardFavsIcon'); function antispamDashboardFavs($core,$favs) { $favs['antispam'] = new ArrayObject(array('antispam','Antispam','plugin.php?p=antispam', 'index.php?pf=antispam/icon.png','index.php?pf=antispam/icon-big.png', 'admin',null,null)); } function antispamDashboardFavsIcon($core,$name,$icon) { // Check if it is comments favs if ($name == 'comments') { // Hack comments title if there is at least one spam $str = dcAntispam::dashboardIconTitle($core); if ($str != '') { $icon[0] .= $str; } } } if (!DC_ANTISPAM_CONF_SUPER || $core->auth->isSuperAdmin()) { $core->addBehavior('adminBlogPreferencesForm',array('antispamBehaviors','adminBlogPreferencesForm')); $core->addBehavior('adminBeforeBlogSettingsUpdate',array('antispamBehaviors','adminBeforeBlogSettingsUpdate')); $core->addBehavior('adminCommentsSpamForm',array('antispamBehaviors','adminCommentsSpamForm')); } class antispamBehaviors { public static function adminCommentsSpamForm($core) { $ttl = $core->blog->settings->antispam->antispam_moderation_ttl; if ($ttl != null && $ttl >=0) { echo '

'.sprintf(__('All spam comments older than %s day(s) will be automatically deleted.'), $ttl).' '. sprintf(__('You can modify this duration in the %s'),' '.__('Blog preferences').''). '

'; } } public static function adminBlogPreferencesForm($core,$settings) { $ttl = $settings->antispam->antispam_moderation_ttl; echo '
Antispam'. '

'. '
'; } public static function adminBeforeBlogSettingsUpdate($settings) { $settings->addNamespace('antispam'); $settings->antispam->put('antispam_moderation_ttl',(integer)$_POST['antispam_moderation_ttl']); } } ?>