]> git.mxchange.org Git - friendica.git/commitdiff
a little bit of phpdoc
authorFabrixxm <fabrix.xm@gmail.com>
Fri, 9 Nov 2012 07:43:22 +0000 (02:43 -0500)
committerFabrixxm <fabrix.xm@gmail.com>
Fri, 9 Nov 2012 07:43:22 +0000 (02:43 -0500)
boot.php

index 4bdf25d4107a98f24305691efc6963f8f539e518..661ebf779cf0a23311e6a71ca7fb71884ccf0277 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -989,6 +989,13 @@ if(! function_exists('remote_user')) {
 // a page is loaded. Usually used for errors or alerts.
 
 if(! function_exists('notice')) {
+       /**
+        * Show an error message to user.
+        * 
+        * This function save text in session, to be shown to the user at next page load
+        * 
+        * @param string $s - Text of notice
+        */
        function notice($s) {
                $a = get_app();
                if(! x($_SESSION,'sysmsg'))     $_SESSION['sysmsg'] = array();
@@ -997,6 +1004,13 @@ if(! function_exists('notice')) {
        }
 }
 if(! function_exists('info')) {
+       /**
+        * Show an info message to user.
+        * 
+        * This function save text in session, to be shown to the user at next page load
+        * 
+        * @param string $s - Text of notice
+        */
        function info($s) {
                $a = get_app();
                if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();