diff --git a/admin/configuration.php b/admin/configuration.php index 369e0cdda..c14f54f12 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -25,344 +25,313 @@ // | USA. | // +-----------------------------------------------------------------------+ -if( !defined("PHPWG_ROOT_PATH") ) +if (!defined('PHPWG_ROOT_PATH')) { - die ("Hacking attempt!"); + die ("Hacking attempt!"); +} +include_once(PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php'); +//-------------------------------------------------------- sections definitions +if (!isset($_GET['section'])) +{ + $page['section'] = 'general'; +} +else +{ + $page['section'] = $_GET['section']; } -include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php' ); - -$Caracs = array("¥" => "Y", "µ" => "u", "À" => "A", "Á" => "A", - "Â" => "A", "Ã" => "A", "Ä" => "A", "Å" => "A", - "Æ" => "A", "Ç" => "C", "È" => "E", "É" => "E", - "Ê" => "E", "Ë" => "E", "Ì" => "I", "Í" => "I", - "Î" => "I", "Ï" => "I", "Ð" => "D", "Ñ" => "N", - "Ò" => "O", "Ó" => "O", "Ô" => "O", "Õ" => "O", - "Ö" => "O", "Ø" => "O", "Ù" => "U", "Ú" => "U", - "Û" => "U", "Ü" => "U", "Ý" => "Y", "ß" => "s", - "à" => "a", "á" => "a", "â" => "a", "ã" => "a", - "ä" => "a", "å" => "a", "æ" => "a", "ç" => "c", - "è" => "e", "é" => "e", "ê" => "e", "ë" => "e", - "ì" => "i", "í" => "i", "î" => "i", "ï" => "i", - "ð" => "o", "ñ" => "n", "ò" => "o", "ó" => "o", - "ô" => "o", "õ" => "o", "ö" => "o", "ø" => "o", - "ù" => "u", "ú" => "u", "û" => "u", "ü" => "u", - "ý" => "y", "ÿ" => "y"); -//------------------------------ verification and registration of modifications -$error = array(); -if ( isset( $_POST['submit'] ) ) +// templates for fields definitions +$true_false = array('type' => 'radio', + 'options' => array('true' => $lang['yes'], + 'false' => $lang['no'])); +$textfield = array('type' => 'textfield'); + +$sections = array( + 'general' => array( + 'mail_webmaster' => $textfield, + 'prefix_thumbnail' => $textfield, + 'access' => array('type' => 'radio', + 'options' => array( + 'free' => $lang['conf_general_access_1'], + 'restricted' => $lang['conf_general_access_2'])), + 'log' => $true_false, + 'mail_notification' => $true_false, + ), + 'comments' => array( + 'show_comments' => $true_false, + 'comments_forall' => $true_false, + 'nb_comment_page' => $textfield, + 'comments_validation' => $true_false + ), + 'default' => array( + 'default_language' => array('type' => 'select', + 'options' => get_languages()), + 'nb_image_line' => $textfield, + 'nb_line_page' => $textfield, + 'default_template' => array('type' => 'select', + 'options' => get_templates()), + 'recent_period' => $textfield, + 'auto_expand' => $true_false, + 'show_nb_comments' => $true_false + ), + 'upload' => array( + 'upload_available' => $true_false, + 'upload_maxfilesize' => $textfield, + 'upload_maxwidth' => $textfield, + 'upload_maxheight' => $textfield, + 'upload_maxwidth_thumbnail' => $textfield, + 'upload_maxheight_thumbnail' => $textfield + ), + 'session' => array( + 'authorize_cookies' => $true_false, + 'session_time' => $textfield, + 'session_id_size' => $textfield + ), + 'metadata' => array( + 'use_exif' => $true_false, + 'use_iptc' => $true_false, + 'show_exif' => $true_false, + 'show_iptc' => $true_false + ) + ); +//------------------------------------------------------ $conf reinitialization +$result = mysql_query('SELECT param,value FROM '.CONFIG_TABLE); +while ($row = mysql_fetch_array($result)) { - $int_pattern = '/^\d+$/'; - // deletion of site as asked - $site_deleted = false; - $query = 'SELECT id'; - $query.= ' FROM '.SITES_TABLE; - $query.= " WHERE galleries_url <> './galleries/';"; - $result = mysql_query( $query ); - while ( $row = mysql_fetch_array( $result ) ) + $conf[$row['param']] = $row['value']; + + if (isset($_POST[$row['param']])) { - $site = 'delete_site_'.$row['id']; - if ( $_POST[$site] == 1 ) + $conf[$row['param']] = $_POST[$row['param']]; + } +} +//------------------------------ verification and registration of modifications +$errors = array(); +if (isset($_POST['submit'])) +{ +// echo '
'; +// print_r($_POST); +// echo ''; + + $int_pattern = '/^\d+$/'; + switch ($page['section']) + { + case 'general' : { - delete_site( $row['id'] ); - $site_deleted = true; + // thumbnail prefix must only contain simple ASCII characters + if (!preg_match('/^[\w-]*$/', $_POST['prefix_thumbnail'])) + { + array_push($errors, $lang['conf_general_prefix_thumbnail_error']); + } + // mail must be formatted as follows : name@server.com + $pattern = '/^[\w-]+(\.[\w-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)+$/'; + if (!preg_match($pattern, $_POST['mail_webmaster'])) + { + array_push($errors, $lang['conf_general_mail_webmaster_error']); + } + break; + } + case 'comments' : + { + // the number of comments per page must be an integer between 5 and 50 + // included + if (!preg_match($int_pattern, $_POST['nb_comment_page']) + or $_POST['nb_comment_page'] < 5 + or $_POST['nb_comment_page'] > 50) + { + array_push($errors, $lang['conf_comments_nb_comment_page_error']); + } + break; + } + case 'default' : + { + // periods must be integer values, they represents number of days + if (!preg_match($int_pattern, $_POST['recent_period']) + or $_POST['recent_period'] <= 0) + { + array_push($errors, $lang['conf_default_recent_period_error']); + } + break; + } + case 'upload' : + { + // the maximum upload filesize must be an integer between 10 and 1000 + if (!preg_match($int_pattern, $_POST['upload_maxfilesize']) + or $_POST['upload_maxfilesize'] < 10 + or $_POST['upload_maxfilesize'] > 1000) + { + array_push($errors, $lang['conf_upload_upload_maxfilesize_error']); + } + + foreach (array('upload_maxwidth', + 'upload_maxheight', + 'upload_maxwidth_thumbnail', + 'upload_maxheight_thumbnail') + as $field) + { + if (!preg_match($int_pattern, $_POST[$field]) + or $_POST[$field] < 10) + { + array_push($errors, $lang['conf_upload_'.$field.'_error']); + } + } + break; + } + case 'session' : + { + // session_id size must be an integer between 4 and 50 + if (!preg_match($int_pattern, $_POST['session_id_size']) + or $_POST['session_id_size'] < 4 + or $_POST['session_id_size'] > 50) + { + array_push($errors, $lang['conf_session_session_id_size_error']); + } + // session_time must be an integer between 5 and 60, in minutes + if (!preg_match($int_pattern, $_POST['session_time']) + or $_POST['session_time'] < 5 + or $_POST['session_time'] > 60) + { + array_push($errors, $lang['conf_session_session_time_error']); + } + break; } } - // if any picture of this site were linked to another categories, we have - // to update the informations of those categories. To make it simple, we - // just update all the categories - if ( $site_deleted ) - { - update_category( 'all' ); - synchronize_all_users(); - } - // thumbnail prefix must not contain accentuated characters - $old_prefix = $_POST['prefix_thumbnail']; - $prefix = strtr( $_POST['prefix_thumbnail'], $Caracs ); - if ( $old_prefix != $prefix ) - { - array_push( $error, $lang['conf_err_prefixe'] ); - } - // mail must be formatted as follows : name@server.com - $pattern = '/^[\w-]+(\.[\w-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)+$/'; - if ( !preg_match( $pattern, $_POST['mail_webmaster'] ) ) - { - array_push( $error, $lang['conf_err_mail'] ); - } - // periods must be integer values, they represents number of days - if (!preg_match($int_pattern, $_POST['recent_period']) - or $_POST['recent_period'] <= 0) - { - array_push( $error, $lang['err_periods'] ); - } - // session_id size must be an integer between 4 and 50 - if ( !preg_match( $int_pattern, $_POST['session_id_size'] ) - or $_POST['session_id_size'] < 4 - or $_POST['session_id_size'] > 50 ) - { - array_push( $error, $lang['conf_err_sid_size'] ); - } - // session_time must be an integer between 5 and 60, in minutes - if ( !preg_match( $int_pattern, $_POST['session_time'] ) - or $_POST['session_time'] < 5 - or $_POST['session_time'] > 60 ) - { - array_push( $error, $lang['conf_err_sid_time'] ); - } - // the number of comments per page must be an integer between 5 and 50 - // included - if ( !preg_match( $int_pattern, $_POST['nb_comment_page'] ) - or $_POST['nb_comment_page'] < 5 - or $_POST['nb_comment_page'] > 50 ) - { - array_push( $error, $lang['conf_err_comment_number'] ); - } - // the maximum upload filesize must be an integer between 10 and 1000 - if ( !preg_match( $int_pattern, $_POST['upload_maxfilesize'] ) - or $_POST['upload_maxfilesize'] < 10 - or $_POST['upload_maxfilesize'] > 1000 ) - { - array_push( $error, $lang['conf_err_upload_maxfilesize'] ); - } - // the maximum width of uploaded pictures must be an integer superior to - // 10 - if ( !preg_match( $int_pattern, $_POST['upload_maxwidth'] ) - or $_POST['upload_maxwidth'] < 10 ) - { - array_push( $error, $lang['conf_err_upload_maxwidth'] ); - } - // the maximum height of uploaded pictures must be an integer superior to - // 10 - if ( !preg_match( $int_pattern, $_POST['upload_maxheight'] ) - or $_POST['upload_maxheight'] < 10 ) - { - array_push( $error, $lang['conf_err_upload_maxheight'] ); - } - // the maximum width of uploaded thumbnails must be an integer superior to - // 10 - if ( !preg_match( $int_pattern, $_POST['upload_maxwidth_thumbnail'] ) - or $_POST['upload_maxwidth_thumbnail'] < 10 ) - { - array_push( $error, $lang['conf_err_upload_maxwidth_thumbnail'] ); - } - // the maximum width of uploaded thumbnails must be an integer superior to - // 10 - if ( !preg_match( $int_pattern, $_POST['upload_maxheight_thumbnail'] ) - or $_POST['upload_maxheight_thumbnail'] < 10 ) - { - array_push( $error, $lang['conf_err_upload_maxheight_thumbnail'] ); - } - -/* if ( $_POST['maxwidth'] != '' - and ( !preg_match( $int_pattern, $_POST['maxwidth'] ) - or $_POST['maxwidth'] < 50 ) ) - { - array_push( $error, $lang['err_maxwidth'] ); - } - if ( $_POST['maxheight'] - and ( !preg_match( $int_pattern, $_POST['maxheight'] ) - or $_POST['maxheight'] < 50 ) ) - { - array_push( $error, $lang['err_maxheight'] ); - }*/ + // updating configuraiton if no error found - if (count($error) == 0) + if (count($errors) == 0) { $result = mysql_query('SELECT * FROM '.CONFIG_TABLE); while ($row = mysql_fetch_array($result)) { - $config_name = $row['param']; - if (isset($_POST[$config_name])) - { - $conf[$config_name] = $_POST[$config_name]; - } - else - { - $conf[$config_name] = $row['value']; - } - - if (isset($_POST[$config_name])) + if (isset($_POST[$row['param']])) { $query = ' UPDATE '.CONFIG_TABLE.' - SET value = \''. str_replace("\'", "''", $conf[$config_name]).'\' - WHERE param = \''.$config_name.'\' + SET value = \''. str_replace("\'", "''", $_POST[$row['param']]).'\' + WHERE param = \''.$row['param'].'\' ;'; mysql_query($query); } } } } - -// echo '
'; -// print_r($conf); -// echo ''; - -$access = ($conf['access']=='free')?'ACCESS_FREE':'ACCESS_RESTRICTED'; -$log = ($conf['log']=='true')?'HISTORY_YES':'HISTORY_NO'; -$mail_notif = ($conf['mail_notification']=='true')?'MAIL_NOTIFICATION_YES':'MAIL_NOTIFICATION_NO'; -$show_comments = ($conf['show_comments']=='true')?'SHOW_COMMENTS_YES':'SHOW_COMMENTS_NO'; -$comments_all = ($conf['comments_forall']=='true')?'COMMENTS_ALL_YES':'COMMENTS_ALL_NO'; -$comments_validation = ($conf['comments_validation']=='true')?'VALIDATE_COMMENTS_YES':'VALIDATE_COMMENTS_NO'; -$expand = ($conf['auto_expand']=='true')?'EXPAND_TREE_YES':'EXPAND_TREE_NO'; -$nb_comments = ($conf['show_nb_comments']=='true')?'NB_COMMENTS_YES':'NB_COMMENTS_NO'; -$upload = ($conf['upload_available']=='true')?'UPLOAD_YES':'UPLOAD_NO'; -$cookie = ($conf['authorize_cookies']=='true')?'COOKIE_YES':'COOKIE_NO'; -$use_exif = ($conf['use_exif']=='true')?'USE_EXIF_YES':'USE_EXIF_NO'; -$use_iptc = ($conf['use_iptc']=='true')?'USE_IPTC_YES':'USE_IPTC_NO'; -$show_exif = ($conf['show_exif']=='true')?'SHOW_EXIF_YES':'SHOW_EXIF_NO'; -$show_iptc = ($conf['show_iptc']=='true')?'SHOW_IPTC_YES':'SHOW_IPTC_NO'; - //----------------------------------------------------- template initialization -$template->set_filenames( array('config'=>'admin/configuration.tpl') ); +$template->set_filenames(array('config'=>'admin/configuration.tpl')); -$template->assign_vars(array( - 'ADMIN_NAME'=>$conf['webmaster'], - 'ADMIN_MAIL'=>$conf['mail_webmaster'], - 'THUMBNAIL_PREFIX'=>$conf['prefix_thumbnail'], - 'NB_COMMENTS_PAGE'=>$conf['nb_comment_page'], - 'LANG_SELECT'=>language_select($conf['default_lang'], 'default_lang'), - 'NB_IMAGE_LINE'=>$conf['nb_image_line'], - 'NB_ROW_PAGE'=>$conf['nb_line_page'], - 'STYLE_SELECT'=>style_select($conf['default_style'], 'default_style'), - 'RECENT_PERIOD'=>$conf['recent_period'], - 'UPLOAD_MAXSIZE'=>$conf['upload_maxfilesize'], - 'UPLOAD_MAXWIDTH'=>$conf['upload_maxwidth'], - 'UPLOAD_MAXHEIGHT'=>$conf['upload_maxheight'], - 'TN_UPLOAD_MAXWIDTH'=>$conf['upload_maxwidth_thumbnail'], - 'TN_UPLOAD_MAXHEIGHT'=>$conf['upload_maxheight_thumbnail'], - 'SESSION_LENGTH'=>$conf['session_time'], - 'SESSION_ID_SIZE'=>$conf['session_id_size'], - - $access=>'checked="checked"', - $log=>'checked="checked"', - $mail_notif=>'checked="checked"', - $show_comments=>'checked="checked"', - $comments_all=>'checked="checked"', - $comments_validation=>'checked="checked"', - $expand=>'checked="checked"', - $nb_comments=>'checked="checked"', - $upload=>'checked="checked"', - $cookie=>'checked="checked"', - $use_exif=>'checked="checked"', - $use_iptc=>'checked="checked"', - $show_exif=>'checked="checked"', - $show_iptc=>'checked="checked"', - - 'L_CONFIRM'=>$lang['conf_confirmation'], - 'L_CONF_GENERAL'=>$lang['conf_general_title'], - 'L_ADMIN_NAME'=>$lang['conf_general_webmaster'], - 'L_ADMIN_NAME_INFO'=>$lang['conf_general_webmaster_info'], - 'L_ADMIN_MAIL'=>$lang['conf_general_mail'], - 'L_ADMIN_MAIL_INFO'=>$lang['conf_general_mail_info'], - 'L_THUMBNAIL_PREFIX'=>$lang['conf_general_prefix'], - 'L_THUMBNAIL_PREFIX_INFO'=>$lang['conf_general_prefix_info'], - 'L_ACCESS'=>$lang['conf_general_access'], - 'L_ACCESS_INFO'=>$lang['conf_general_access_info'], - 'L_ACCESS_FREE'=>$lang['conf_general_access_1'], - 'L_ACCESS_RESTRICTED'=>$lang['conf_general_access_2'], - 'L_CONF_HISTORY'=>$lang['history'], - 'L_CONF_HISTORY_INFO'=>$lang['conf_general_log_info'], - 'L_MAIL_NOTIFICATION'=>$lang['conf_general_mail_notification'], - 'L_MAIL_NOTIFICATION_INFO'=>$lang['conf_general_mail_notification_info'], - 'L_CONF_COMMENTS'=>$lang['conf_comments_title'], - 'L_SHOW_COMMENTS'=>$lang['conf_comments_show_comments'], - 'L_SHOW_COMMENTS_INFO'=>$lang['conf_comments_show_comments_info'], - 'L_COMMENTS_ALL'=>$lang['conf_comments_forall'], - 'L_COMMENTS_ALL_INFO'=>$lang['conf_comments_forall_info'], - 'L_NB_COMMENTS_PAGE'=>$lang['conf_comments_comments_number'], - 'L_NB_COMMENTS_PAGE_INFO'=>$lang['conf_comments_comments_number_info'], - 'L_VALIDATE_COMMENTS'=>$lang['conf_comments_validation'], - 'L_VALIDATE_COMMENTS_INFO'=>$lang['conf_comments_validation_info'], - 'L_ABILITIES_SETTINGS'=>$lang['conf_default_title'], - 'L_LANG_SELECT'=>$lang['customize_language'], - 'L_LANG_SELECT_INFO'=>$lang['conf_default_language_info'], - 'L_NB_IMAGE_LINE'=>$lang['customize_nb_image_per_row'], - 'L_NB_IMAGE_LINE_INFO'=>$lang['conf_default_nb_image_per_row_info'], - 'L_NB_ROW_PAGE'=>$lang['customize_nb_row_per_page'], - 'L_NB_ROW_PAGE_INFO'=>$lang['conf_default_nb_row_per_page_info'], - 'L_STYLE_SELECT'=>$lang['customize_theme'], - 'L_STYLE_SELECT_INFO'=>$lang['conf_default_theme_info'], - 'L_RECENT_PERIOD'=>$lang['customize_recent_period'], - 'L_RECENT_PERIOD_INFO'=>$lang['conf_default_recent_period_info'], - 'L_EXPAND_TREE'=>$lang['customize_expand'], - 'L_EXPAND_TREE_INFO'=>$lang['conf_default_expand_info'], - 'L_NB_COMMENTS'=>$lang['customize_show_nb_comments'], - 'L_NB_COMMENTS_INFO'=>$lang['conf_default_show_nb_comments_info'], - 'L_AUTH_UPLOAD'=>$lang['conf_upload_available'], - 'L_AUTH_UPLOAD_INFO'=>$lang['conf_upload_available_info'], - 'L_CONF_UPLOAD'=>$lang['conf_upload_title'], - 'L_UPLOAD_MAXSIZE'=>$lang['conf_upload_maxfilesize'], - 'L_UPLOAD_MAXSIZE_INFO'=>$lang['conf_upload_maxfilesize_info'], - 'L_UPLOAD_MAXWIDTH'=>$lang['conf_upload_maxwidth'], - 'L_UPLOAD_MAXWIDTH_INFO'=>$lang['conf_upload_maxwidth_info'], - 'L_UPLOAD_MAXHEIGHT'=>$lang['conf_upload_maxheight'], - 'L_UPLOAD_MAXHEIGHT_INFO'=>$lang['conf_upload_maxheight_info'], - 'L_TN_UPLOAD_MAXWIDTH'=>$lang['conf_upload_maxwidth_thumbnail'], - 'L_TN_UPLOAD_MAXWIDTH_INFO'=>$lang['conf_upload_maxwidth_thumbnail_info'], - 'L_TN_UPLOAD_MAXHEIGHT'=>$lang['conf_upload_maxheight_thumbnail'], - 'L_TN_UPLOAD_MAXHEIGHT_INFO'=>$lang['conf_upload_maxheight_thumbnail'], - 'L_CONF_SESSION'=>$lang['conf_session_title'], - 'L_COOKIE'=>$lang['conf_session_cookie'], - 'L_COOKIE_INFO'=>$lang['conf_session_cookie_info'], - 'L_SESSION_LENGTH'=>$lang['conf_session_time'], - 'L_SESSION_LENGTH_INFO'=>$lang['conf_session_time_info'], - 'L_SESSION_ID_SIZE'=>$lang['conf_session_size'], - 'L_SESSION_ID_SIZE_INFO'=>$lang['conf_session_size_info'], - 'L_YES'=>$lang['yes'], - 'L_NO'=>$lang['no'], - 'L_SUBMIT'=>$lang['submit'], - 'L_CONF_METADATA'=>$lang['conf_metadata_title'], - 'L_USE_EXIF'=>$lang['conf_use_exif'], - 'L_USE_EXIF_INFO'=>$lang['conf_use_exif_info'], - 'L_USE_IPTC'=>$lang['conf_use_iptc'], - 'L_USE_IPTC_INFO'=>$lang['conf_use_iptc_info'], - 'L_SHOW_EXIF'=>$lang['conf_show_exif'], - 'L_SHOW_EXIF_INFO'=>$lang['conf_show_exif_info'], - 'L_SHOW_IPTC'=>$lang['conf_show_iptc'], - 'L_SHOW_IPTC_INFO'=>$lang['conf_show_iptc_info'], - - 'F_ACTION'=>add_session_id(PHPWG_ROOT_PATH.'admin.php?page=configuration') - )); +$action = PHPWG_ROOT_PATH.'admin.php?page=configuration'; +$action.= '§ion='.$page['section']; +$template->assign_vars( + array( + 'L_CONFIRM'=>$lang['conf_confirmation'], + 'L_SUBMIT'=>$lang['submit'], + 'F_ACTION'=>add_session_id($action) + ) + ); + +$base_url = PHPWG_ROOT_PATH.'admin.php?page=configuration§ion='; +foreach (array_keys($sections) as $section) +{ + if (isset($_GET['section']) and $_GET['section'] == $section) + { + $class = 'opened'; + } + else + { + $class = ''; + } + + $template->assign_block_vars( + 'confmenu_item', + array( + 'CLASS' => $class, + 'URL' => add_session_id($base_url.$section), + 'NAME' => $lang['conf_'.$section.'_title'] + )); +} + +$fields = $sections[$page['section']]; +foreach ($fields as $field_name => $field) +{ + $template->assign_block_vars( + 'line', + array( + 'NAME' => $lang['conf_'.$page['section'].'_'.$field_name], + 'INFO' => $lang['conf_'.$page['section'].'_'.$field_name.'_info'] + )); + if ($field['type'] == 'textfield') + { + $template->assign_block_vars( + 'line.textfield', + array( + 'NAME' => $field_name, + 'VALUE' => $conf[$field_name] + )); + } + else if ($field['type'] == 'radio') + { + foreach ($field['options'] as $option_value => $option) + { + if ($conf[$field_name] == $option_value) + { + $checked = 'checked="checked"'; + } + else + { + $checked = ''; + } + + $template->assign_block_vars( + 'line.radio', + array( + 'NAME' => $field_name, + 'VALUE' => $option_value, + 'CHECKED' => $checked, + 'OPTION' => $option + )); + } + } + else if ($field['type'] == 'select') + { + $template->assign_block_vars( + 'line.select', + array( + 'NAME' => $field_name + )); + foreach ($field['options'] as $option_value => $option) + { + if ($conf[$field_name] == $option_value) + { + $selected = 'selected="selected"'; + } + else + { + $selected = ''; + } + + $template->assign_block_vars( + 'line.select.select_option', + array( + 'VALUE' => $option_value, + 'SELECTED' => $selected, + 'OPTION' => $option + )); + } + } +} //-------------------------------------------------------------- errors display -if ( sizeof( $error ) != 0 ) +if (count($errors) != 0) { $template->assign_block_vars('errors',array()); - for ( $i = 0; $i < sizeof( $error ); $i++ ) + foreach ($errors as $error) { - $template->assign_block_vars('errors.error',array('ERROR'=>$error[$i])); + $template->assign_block_vars('errors.error',array('ERROR'=>$error)); } } -elseif ( isset( $_POST['submit'] ) ) +else if (isset($_POST['submit'])) { $template->assign_block_vars('confirmation' ,array()); } -//------------------------------------------------ remote sites administration -$query = 'select id,galleries_url'; -$query.= ' from '.SITES_TABLE; -$query.= " where galleries_url <> './galleries/';"; -$result = mysql_query( $query ); -if ( mysql_num_rows( $result ) > 0 ) -{ - $vtp->addSession( $sub, 'remote_sites' ); - $i = 0; - while ( $row = mysql_fetch_array( $result ) ) - { - $vtp->addSession( $sub, 'site' ); - $vtp->setVar( $sub, 'site.url', $row['galleries_url'] ); - $vtp->setVar( $sub, 'site.id', $row['id'] ); - if ( $i == 0 ) - { - $vtp->addSession( $sub, 'rowspan' ); - $vtp->setVar( $sub, 'rowspan.nb_sites', mysql_num_rows( $result ) ); - $vtp->closeSession( $sub, 'rowspan' ); - } - $vtp->closeSession( $sub, 'site' ); - $i++; - } - $vtp->closeSession( $sub, 'remote_sites' ); -} //----------------------------------------------------------- sending html code $template->assign_var_from_handle('ADMIN_CONTENT', 'config'); ?> diff --git a/include/common.inc.php b/include/common.inc.php index 6a06706ce..6d4b37195 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -130,7 +130,7 @@ include(PHPWG_ROOT_PATH . 'include/template.php'); // mysql_connect( $dbhost, $dbuser, $dbpasswd ) -or die ( "Could not connect to server" ); +or die ( "Could not connect to database server" ); mysql_select_db( $dbname ) or die ( "Could not connect to database" ); diff --git a/include/functions.inc.php b/include/functions.inc.php index df5b39e40..afd4f87b0 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -179,22 +179,25 @@ function get_filename_wo_extension( $filename ) } /** - * returns an array contening sub-directories + * returns an array contening sub-directories, excluding "CVS" * * @param string $dir * @return array */ -function get_dirs( $directory ) +function get_dirs($directory) { $sub_dirs = array(); - if ( $opendir = opendir( $directory ) ) + if ($opendir = opendir($directory)) { - while ( $file = readdir ( $opendir ) ) + while ($file = readdir($opendir)) { - if ( $file != '.' and $file != '..' and is_dir ( $directory.'/'.$file ) ) + if ($file != '.' + and $file != '..' + and is_dir($directory.'/'.$file) + and $file != 'CVS') { - array_push( $sub_dirs, $file ); + array_push($sub_dirs, $file); } } } @@ -258,23 +261,29 @@ function get_picture_size( $original_width, $original_height, } //-------------------------------------------- PhpWebGallery specific functions -// get_languages retourne un tableau contenant tous les languages -// disponibles pour PhpWebGallery -function get_languages( $rep_language ) +/** + * returns an array with a list of {language_code => language_name} + * + * @returns array + */ +function get_languages() { - global $lang; + $dir = opendir(PHPWG_ROOT_PATH.'language'); $languages = array(); - $i = 0; - if ( $opendir = opendir ( $rep_language ) ) + + while ($file = readdir($dir)) { - while ( $file = readdir ( $opendir ) ) + $path = realpath(PHPWG_ROOT_PATH.'language/'.$file); + if (is_dir($path) and !is_link($path) and file_exists($path.'/iso.txt')) { - if ( is_dir ( $rep_language.$file )&& !substr_count($file,'.') && isset($lang['lang'][$file])) - { - $languages[$i++] =$lang['lang'][$file]; - } + list($language_name) = @file($path.'/iso.txt'); + $languages[$file] = $language_name; } } + closedir($dir); + @asort($languages); + @reset($languages); + return $languages; } @@ -539,4 +548,12 @@ function get_query_string_diff($rejects = array()) return $query_string; } + +/** + * returns available templates + */ +function get_templates() +{ + return get_dirs(PHPWG_ROOT_PATH.'template'); +} ?> \ No newline at end of file diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index 015eef155..5d91aa7aa 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -113,22 +113,7 @@ function create_navigation_bar( $url, $nb_element, $start, // function language_select($default, $select_name = "language") { - - $dir = opendir(PHPWG_ROOT_PATH . 'language'); - $available_lang= array(); - - while ( $file = readdir($dir) ) - { - $path= realpath(PHPWG_ROOT_PATH . 'language/'.$file); - if (is_dir ($path) && !is_link($path) && file_exists($path . '/iso.txt')) - { - list($displayname) = @file($path . '/iso.txt'); - $available_lang[$displayname] = $file; - } - } - closedir($dir); - @asort($available_lang); - @reset($available_lang); + $available_lang = get_languages(); $lang_select = '