add info() function. Works like notice() but show messages in a div with class info-message.

update code to use info() instead of notice() when appropriate (non-error message)
add info-message class style in themes
This commit is contained in:
Fabio Comuni 2011-05-23 11:39:57 +02:00
parent 3ea145fae7
commit e1107b55c6
33 changed files with 123 additions and 75 deletions

View file

@ -85,7 +85,7 @@ logger('contact_edit ' . print_r($_POST,true));
intval(local_user())
);
if($r)
notice( t('Contact updated.') . EOL);
info( t('Contact updated.') . EOL);
else
notice( t('Failed to update contact record.') . EOL);
return;
@ -143,7 +143,7 @@ function contacts_content(&$a) {
);
if($r) {
//notice( t('Contact has been ') . (($blocked) ? t('blocked') : t('unblocked')) . EOL );
notice( (($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')) . EOL );
info( (($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')) . EOL );
}
goaway($a->get_baseurl() . '/contacts/' . $contact_id);
return; // NOTREACHED
@ -157,7 +157,7 @@ function contacts_content(&$a) {
intval(local_user())
);
if($r) {
notice( (($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')) . EOL );
info( (($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')) . EOL );
}
goaway($a->get_baseurl() . '/contacts/' . $contact_id);
return; // NOTREACHED
@ -197,7 +197,7 @@ function contacts_content(&$a) {
contact_remove($contact_id);
notice( t('Contact has been removed.') . EOL );
info( t('Contact has been removed.') . EOL );
goaway($a->get_baseurl() . '/contacts');
return; // NOTREACHED
}
@ -402,4 +402,4 @@ function contacts_content(&$a) {
}
$o .= paginate($a);
return $o;
}
}