diff --git a/about.php b/about.php index 41b68b220..9f37275f5 100644 --- a/about.php +++ b/about.php @@ -33,17 +33,16 @@ include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); // Start output of page // $title= $lang['about_page_title']; +$page['body_id'] = 'theAboutPage'; include(PHPWG_ROOT_PATH.'include/page_header.php'); $template->set_filenames(array('about'=>'about.tpl')); -$template->assign_vars(array( - 'PAGE_TITLE' => $title, - 'L_ABOUT' => $lang['about_message'], - 'L_RETURN' => $lang['home'], - 'L_RETURN_HINT' => $lang['home_hint'], - 'U_RETURN' => add_session_id(PHPWG_ROOT_PATH.'category.php?'.$_SERVER['QUERY_STRING']) - ) - ); +$template->assign_vars( + array( + 'L_ABOUT' => $lang['about_message'], + 'U_HOME' => add_session_id(PHPWG_ROOT_PATH.'category.php') + ) + ); $template->parse('about'); include(PHPWG_ROOT_PATH.'include/page_tail.php'); diff --git a/admin.php b/admin.php index 28c7dc992..b2113b22a 100644 --- a/admin.php +++ b/admin.php @@ -57,6 +57,8 @@ $conf_link = $link_start.'configuration§ion='; $opt_link = $link_start.'cat_options§ion='; //----------------------------------------------------- template initialization $title = l10n('PhpWebGallery administration'); // for include/page_header.php +$page['gallery_title'] = l10n('PhpWebGallery Administration'); +$page['body_id'] = 'theAdminPage'; include(PHPWG_ROOT_PATH.'include/page_header.php'); $template->set_filenames(array('admin' => 'admin.tpl')); diff --git a/admin/search.php b/admin/search.php deleted file mode 100644 index 482d6afbc..000000000 --- a/admin/search.php +++ /dev/null @@ -1,108 +0,0 @@ -set_filenames( array('search'=>'admin/search_username.tpl') ); -$template->assign_vars(array( - 'USERNAME'=>( !empty($search_match) ) ? strip_tags($search_match) : '', - - 'L_SEARCH_USERNAME'=>$lang['Find_username'], - 'L_SEARCH'=>$lang['search'], - 'L_SEARCH_EXPLAIN'=>$lang['search_explain'], - 'L_SELECT'=>$lang['Select'], - 'L_UPDATE_USERNAME'=>$lang['Look_up_user'], - 'L_CLOSE_WINDOW'=>$lang['Close'], - - 'F_SEARCH_ACTION' => add_session_id($_SERVER['PHP_SELF']), - )); - -//----------------------------------------------------------------- form action -// -// Define initial vars -// -if ( isset($_POST['mode']) || isset($_GET['mode']) ) -{ - $mode = ( isset($_POST['mode']) ) ? $_POST['mode'] : $_GET['mode']; -} -else -{ - $mode = ''; -} -$search_match = ''; -if ( isset($_POST['search_username']) ) -{ - $search_match = $_POST['search_username']; -} - -$username_list = ''; -if ( !empty($search_match) ) -{ - $username_search = preg_replace('/\*/', '%', trim(strip_tags($search_match))); - - $sql = "SELECT username - FROM " . USERS_TABLE . " - WHERE username LIKE '" . str_replace("\'", "''", $username_search) . "' - AND id <> ".$conf['guest_id']." - ORDER BY username"; - if ( !($result = pwg_query($sql)) ) - { - die('Could not obtain search results'); - } - - if ( $row = mysql_fetch_array($result) ) - { - do - { - $username_list .= ''; - } - while ( $row = mysql_fetch_array($result) ); - } - else - { - $username_list .= ''; - } - mysql_free_result($result); -} - -//------------------------------------------------------------------ users list -if ( !empty($username_list)) -{ - $template->assign_block_vars('switch_select_name', array( - 'F_USERNAME_OPTIONS'=>$username_list - )); -} - -$template->parse('search'); -include(PHPWG_ROOT_PATH.'include/page_tail.php'); -?> \ No newline at end of file diff --git a/admin/user_list.php b/admin/user_list.php index aa1bbff22..e4a4c6d7e 100644 --- a/admin/user_list.php +++ b/admin/user_list.php @@ -124,17 +124,29 @@ DELETE FROM '.USER_GROUP_TABLE.' $formfields = array('nb_image_line', 'nb_line_page', 'template', 'language', - 'recent_period', 'expand', 'show_nb_comments', 'maxwidth', + 'recent_period', 'maxwidth', 'expand', 'show_nb_comments', 'maxheight', 'status'); - + + $true_false_fields = array('expand', 'show_nb_comments'); + foreach ($formfields as $formfield) { - if ($_POST[$formfield.'_action'] != 'leave') + // special for true/false fields + if (in_array($formfield, $true_false_fields)) + { + $test = $formfield; + } + else + { + $test = $formfield.'_action'; + } + + if ($_POST[$test] != 'leave') { array_push($dbfields['update'], $formfield); } } - + // updating elements is useful only if needed... if (count($dbfields['update']) > 0) { @@ -150,7 +162,8 @@ DELETE FROM '.USER_GROUP_TABLE.' { // if the action is 'unset', the key won't be in row and // mass_updates function will set this field to NULL - if ('set' == $_POST[$dbfield.'_action']) + if (in_array($dbfield, $true_false_fields) + or 'set' == $_POST[$dbfield.'_action']) { $data[$dbfield] = $_POST[$dbfield]; } @@ -165,6 +178,10 @@ DELETE FROM '.USER_GROUP_TABLE.' array_push($datas, $data); } +// echo '
'; +// print_r($datas); +// echo ''; + mass_updates(USER_INFOS_TABLE, $dbfields, $datas); } } @@ -366,12 +383,6 @@ else 'MAXWIDTH' => @$conf['default_maxwidth'], 'MAXHEIGHT' => @$conf['default_maxheight'], 'RECENT_PERIOD' => $conf['recent_period'], - 'EXPAND_YES' => $conf['auto_expand'] ? 'checked="checked"' : '', - 'EXPAND_NO' => !$conf['auto_expand'] ? 'checked="checked"' : '', - 'SHOW_NB_COMMENTS_YES' => - $conf['show_nb_comments'] ? 'checked="checked"' : '', - 'SHOW_NB_COMMENTS_NO' => - !$conf['show_nb_comments'] ? 'checked="checked"' : '' )); } diff --git a/category.php b/category.php index cfef60065..7e2a037f5 100644 --- a/category.php +++ b/category.php @@ -112,6 +112,7 @@ if ( $user['expand'] ) // Start output of page // $title = $page['title']; +$page['body_id'] = 'theCategoryPage'; include(PHPWG_ROOT_PATH.'include/page_header.php'); $template->set_filenames( array('category'=>'category.tpl') ); @@ -134,7 +135,8 @@ if ( isset( $page['cat_nb_images'] ) and $page['cat_nb_images'] > 0 ) $icon_recent = get_icon(date('Y-m-d')); -$template->assign_vars(array( +$template->assign_vars( + array( 'NB_PICTURE' => count_user_total_images(), 'TITLE' => $template_title, 'USERNAME' => $user['username'], diff --git a/comments.php b/comments.php index 6b949eb31..a2fdc466f 100644 --- a/comments.php +++ b/comments.php @@ -165,11 +165,10 @@ UPDATE '.COMMENTS_TABLE.' // +-----------------------------------------------------------------------+ // | page header and options | // +-----------------------------------------------------------------------+ -if (!defined('IN_ADMIN')) -{ - $title= l10n('title_comments'); - include(PHPWG_ROOT_PATH.'include/page_header.php'); -} + +$title= l10n('title_comments'); +$page['body_id'] = 'theCommentsPage'; +include(PHPWG_ROOT_PATH.'include/page_header.php'); $template->set_filenames(array('comments'=>'comments.tpl')); $template->assign_vars( diff --git a/doc/ChangeLog b/doc/ChangeLog index 7d325c215..cdf5bc542 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,22 @@ +2005-08-26 Pierrick LE GALL + + * new : HTML BODY identifier to let CSS stylesheets manage + specific behaviour. + + * deletion : admin/search useless + + * improvement : in admin/user_list, special behaviour for + true/false fields (expand, show_comments) + + * new : gallery_title and gallery_description are displayed at the + top of each page. + + * improvement : simplification in HTML for categories menu. + + * improvement : standardization of presentation in all public + pages (identification, registration, search, profile, + notification, comments, etc.) + 2005-08-25 Pierrick LE GALL * deletion : no mail notification anymore. Feature replaced by RSS diff --git a/identification.php b/identification.php index 2301934dd..79157e632 100644 --- a/identification.php +++ b/identification.php @@ -64,6 +64,7 @@ SELECT '.$conf['user_fields']['id'].' AS id, // Start output of page // $title = $lang['identification']; +$page['body_id'] = 'theIdentificationPage'; include(PHPWG_ROOT_PATH.'include/page_header.php'); $template->set_filenames( array('identification'=>'identification.tpl') ); diff --git a/include/config_default.inc.php b/include/config_default.inc.php index e13090fd4..62e4a2782 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -270,9 +270,13 @@ $conf['allow_random_representative'] = false; // category and element description. $conf['allow_html_descriptions'] = true; -// gallery_title : Title for RSS feed -$conf['gallery_title'] = 'PhpWebGallery demo'; +// gallery_title : Title at top of each page and for RSS feed +$conf['gallery_title'] = 'PhpWebGallery demonstration site'; + +// gallery_description : Short description displayed with gallery title +$conf['gallery_description'] = 'My photos web site'; // galery_url : URL given in RSS feed $conf['gallery_url'] = 'http://demo.phpwebgallery.net'; + ?> diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index b797d2657..b3aacb70d 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -374,27 +374,21 @@ function get_html_menu_category($categories) $menu.= str_repeat("\n",($ref_level-$level)); } $ref_level = $level; - + $menu.= ' -
+
diff --git a/template/cclear/admin.tpl b/template/cclear/admin.tpl
index ef1f89a80..98f555332 100644
--- a/template/cclear/admin.tpl
+++ b/template/cclear/admin.tpl
@@ -1,4 +1,5 @@
+