开发者

Drupal: Display success/error message

how can I show users success/error messages without creating a no开发者_Go百科de for it?

Thanks in advance!


drupal_set_message($msg, $type = 'status'); lets you set a message, it will be displayed automatically on the next (or current) page the user visits.

The optional second argument lets you choose between an informational message (status), a warning (usually yellow) or an error (red).

See the docs: http://api.drupal.org/api/function/drupal_set_message/6


Not really too sure what your question is, in your theme, there will be the variable

<?php
    print $messages;
?>

This will print any success/error messages to the screen. They are not stored as nodes.

For a complete list of drupal variables see the documentation


Use this code in settings.php to disable the error messages:

$conf['error_level'] = 0;

See this blog: from here

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜