diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-22 06:50:20 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-22 06:50:20 +0000 |
commit | bdc0876fa86e29ee439e69024f6f476c49886b99 (patch) | |
tree | ee1b629c7b241322f966eaf287549c8c1aefdc1d /core/libraries/Admin_View.php | |
parent | f6381c534e92e230349f5633eb280a22421d9050 (diff) |
Add messaging system for reporting actions back to the user. Make
module install/uninstall work and tie it into the messaging system.
Diffstat (limited to 'core/libraries/Admin_View.php')
-rw-r--r-- | core/libraries/Admin_View.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/libraries/Admin_View.php b/core/libraries/Admin_View.php index c172b76b..e9ff9791 100644 --- a/core/libraries/Admin_View.php +++ b/core/libraries/Admin_View.php @@ -60,6 +60,13 @@ class Admin_View_Core extends View { print $menu; } + /** + * Print out any messages waiting for this user. + */ + public function messages() { + return message::get(); + } + /** * Handle all theme functions that insert module content. */ |