]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/util.php
validation in form handlers
[quix0rs-gnu-social.git] / lib / util.php
index 99a914a3a5ba6b93c4331d72f95092c1ffc6b921..e4699bf1a4d12ec5b7af77258cc25229351018d6 100644 (file)
@@ -112,10 +112,10 @@ function common_show_header($pagetitle) {
 
 function common_show_footer() {
        global $xw, $config;
-       common_element_start('p', 'footer');
+       common_element_start('div', 'footer');
        common_foot_menu();
        common_license_block();
-       common_element_end('p');
+       common_element_end('div');
        common_element_end('div');
        common_element_end('div');
        common_element_end('div');
@@ -175,13 +175,14 @@ function common_head_menu() {
 }
 
 function common_foot_menu() {
-       common_element_start('ul', 'footmenu');
+       common_element_start('ul', 'footmenu menuish');
        common_menu_item(common_local_url('doc', array('title' => 'about')),
                                         _t('About'));
        common_menu_item(common_local_url('doc', array('title' => 'help')),
                                         _t('Help'));
        common_menu_item(common_local_url('doc', array('title' => 'privacy')),
                                         _t('Privacy'));
+       common_element_end('ul');
 }
 
 function common_menu_item($url, $text, $title=NULL) {
@@ -231,6 +232,18 @@ function common_submit($id, $label) {
        common_element_end('p');
 }
 
+function common_textarea($id, $label, $content=NULL) {
+       common_element_start('p');
+       common_element('label', array('for' => $id), $label);
+       common_element('textarea', array('rows' => 3,
+                                                                        'cols' => 40,
+                                                                        'name' => $id,
+                                                                        'id' => $id, 
+                                                                        'class' => 'width50'),
+                                  ($content) ? $content : ' ');
+       common_element_end('p');
+}
+
 # salted, hashed passwords are stored in the DB
 
 function common_munge_password($id, $password) {
@@ -380,17 +393,10 @@ function common_profile_url($nickname) {
 function common_notice_form() {
        common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
                                                                           'action' => common_local_url('newnotice')));
-       common_element_start('p');
-       common_element('label', array('for' => 'content'), _t('What\'s up?'));
-       common_element('textarea', array('rows' => 3, 'cols' => 40,
-                                                                        'name' => 'content',
-                                                                        'id' => 'content', 
-                                                                        'class' => 'width75'),
-                                  ' ');
-       common_element_end('p');
+       common_textarea('noticecontent', _t('What\'s up?'));
        common_submit('submit', _t('Send'));
        common_element_end('form');
-       }
+}
 
 // XXX: set up gettext