X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Foptions_order.php;h=7309da7b3a31423077d919e4ec820285a508cddb;hb=42f2eadfbdc4a3b8144b5dae28194a71780790c2;hp=15c9fb7717011f95037bbb1e0a68ba2b7f74d376;hpb=f740c049d91feb836dd9633be9e8ff52c00d066f;p=squirrelmail.git diff --git a/src/options_order.php b/src/options_order.php index 15c9fb77..7309da7b 100644 --- a/src/options_order.php +++ b/src/options_order.php @@ -1,140 +1,151 @@ -
-
-
-
- - '; + echo html_tag( 'td', ' - ' ); + echo html_tag( 'td', $available[$tmp] ); + echo '' . "\n"; + } + echo '
- 1) { - $prev = $num-1; - $tmp = $index_order[$prev]; - $index_order[$prev] = $index_order[$num]; - $index_order[$num] = $tmp; - } else if ($method == 'down' && $num < count($index_order)) { - $next = $num++; - $tmp = $index_order[$next]; - $index_order[$next] = $index_order[$num]; - $index_order[$num] = $tmp; - } else if ($method == 'remove' && $num) { - for ($i=1; $i < 8; $i++) { - removePref($data_dir, $username, "order$i"); - } - for ($j=1,$i=1; $i <= count($index_order); $i++) { - if ($i != $num) { - $new_ary[$j] = $index_order[$i]; - $j++; - } - } - $index_order = array(); - $index_order = $new_ary; - if (count($index_order) < 1) { - include ('../src/load_prefs.php'); - } - } else if ($method == 'add' && $add) { - // User should not be able to insert PHP-code here - $add = str_replace ('', '..', $add); - $add = str_replace ('<%', '..', $add); - $index_order[count($index_order)+1] = $add; - } +sqgetGlobalVar('submit', $submit); +sqgetGlobalVar('method', $method); +/* end of get globals */ - if ($method) { - for ($i=1; $i <= count($index_order); $i++) { - setPref($data_dir, $username, "order$i", $index_order[$i]); - } - } - echo '
'; - echo '
' . "\n"; - echo _("The index order is the order that the columns are arranged in the message index. You can add, remove, and move columns around to customize them to fit your needs."); - echo '

'; +displayPageHeader($color, 'None'); - if (count($index_order)) - { - echo '
'; - echo '' . "\n"; - for ($i=1; $i <= count($index_order); $i++) { - $tmp = $index_order[$i]; - echo ''; - echo "\n"; - echo '' . "\n"; - echo "\n"; - echo '' . "\n"; - echo '\n"; - echo '' . "\n"; - echo '\n"; - echo "\n"; - } - echo "
". _("up") ." | ". _("down") . " | '; - // Always show the subject - if ($tmp != 4) - echo "" . _("remove") . ''; - echo " - ' . $available[$tmp] . "
\n"; - echo '
'; - } - - if (count($index_order) != count($available)) { - echo '
'; - echo ''; - echo ''; - echo ''; - echo '
'; - } - - echo '
' . _("Return to options page") . '
'; + echo + html_tag( 'table', '', 'center', '', 'width="95%" border="0" cellpadding="1" cellspacing="0"' ) . + html_tag( 'tr' ) . + html_tag( 'td', '', 'center', $color[0] ) . + '' . _("Options") . ' - ' . _("Index Order") . '' . + html_tag( 'table', '', '', '', 'width="100%" border="0" cellpadding="8" cellspacing="0"' ) . + html_tag( 'tr' ) . + html_tag( 'td', '', 'center', $color[4] ); + + $available[1] = _("Checkbox"); + $available[2] = _("From"); + $available[3] = _("Date"); + $available[4] = _("Subject"); + $available[5] = _("Flags"); + $available[6] = _("Size"); + + if (! isset($method)) { $method = ''; } + + if ($method == 'up' && $num > 1) { + $prev = $num-1; + $tmp = $index_order[$prev]; + $index_order[$prev] = $index_order[$num]; + $index_order[$num] = $tmp; + } else if ($method == 'down' && $num < count($index_order)) { + $next = $num++; + $tmp = $index_order[$next]; + $index_order[$next] = $index_order[$num]; + $index_order[$num] = $tmp; + } else if ($method == 'remove' && $num) { + for ($i=1; $i < 8; $i++) { + removePref($data_dir, $username, "order$i"); + } + for ($j=1,$i=1; $i <= count($index_order); $i++) { + if ($i != $num) { + $new_ary[$j] = $index_order[$i]; + $j++; + } + } + $index_order = array(); + $index_order = $new_ary; + if (count($index_order) < 1) { + include_once('../src/load_prefs.php'); + } + } else if ($method == 'add' && $add) { + /* User should not be able to insert PHP-code here */ + $add = str_replace ('', '..', $add); + $add = str_replace ('<%', '..', $add); + $index_order[count($index_order)+1] = $add; + } + + if ($method) { + for ($i=1; $i <= count($index_order); $i++) { + setPref($data_dir, $username, "order$i", $index_order[$i]); + } + } + echo html_tag( 'table', + html_tag( 'tr', + html_tag( 'td', + _("The index order is the order that the columns are arranged in the message index. You can add, remove, and move columns around to customize them to fit your needs.") + ) + ) , + '', '', '', 'width="65%" border="0" cellpadding="0" cellspacing="0"' ) . "
\n"; + + if (count($index_order)) + { + echo html_tag( 'table', '', '', '', ' cellspacing="0" cellpadding="0" border="0"' ) . "\n"; + for ($i=1; $i <= count($index_order); $i++) { + $tmp = $index_order[$i]; + echo html_tag( 'tr' ); + echo html_tag( 'td', ''. _("up") .'' ); + echo html_tag( 'td', ' | ' ); + echo html_tag( 'td', ''. _("down") .'' ); + echo html_tag( 'td', ' | ' ); + echo html_tag( 'td' ); + /* Always show the subject */ + if ($tmp != 4) + echo '' . _("remove") . ''; + else + echo ' '; + echo '
' . "\n"; + } + + if (count($index_order) != count($available)) { + echo '
'; + echo ''; + echo ''; + echo ''; + echo '
'; + } + + echo html_tag( 'p', '' . _("Return to options page") . '


' ); ?> - + + + + +