diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-09-29 16:47:05 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-09-29 16:47:05 +0000 |
| commit | 932ea522ca08af44ca32cad7a00a049310a49538 (patch) | |
| tree | 21c596ea2d630a2a60cfe9aa306fc19fa8cf2b2f /roundcubemail/program/include/rcube_html_page.php | |
| parent | eefe61fb1e7a12b874b788dc771c2d3c05404b67 (diff) | |
- Update phpdoc (#1486958)
git-svn-id: https://svn.roundcube.net/trunk@4015 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_html_page.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_html_page.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roundcubemail/program/include/rcube_html_page.php b/roundcubemail/program/include/rcube_html_page.php index 9abe08e0b..06cb5cb56 100644 --- a/roundcubemail/program/include/rcube_html_page.php +++ b/roundcubemail/program/include/rcube_html_page.php @@ -84,6 +84,8 @@ class rcube_html_page /** * Add HTML code to the page header + * + * @param string $str HTML code */ public function add_header($str) { @@ -93,6 +95,8 @@ class rcube_html_page /** * Add HTML code to the page footer * To be added right befor </body> + * + * @param string $str HTML code */ public function add_footer($str) { @@ -101,6 +105,8 @@ class rcube_html_page /** * Setter for page title + * + * @param string $t Page title */ public function set_title($t) { @@ -110,6 +116,8 @@ class rcube_html_page /** * Setter for output charset. * To be specified in a meta tag and sent as http-header + * + * @param string $charset Charset */ public function set_charset($charset) { @@ -118,6 +126,8 @@ class rcube_html_page /** * Getter for output charset + * + * @return string Output charset */ public function get_charset() { @@ -263,6 +273,8 @@ class rcube_html_page /** * Callback function for preg_replace_callback in write() + * + * @return string Parsed string */ private function file_callback($matches) { |
