X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Foptions_order.php;h=a91f865da6d66a8ceec8032868d824b4faa17daf;hb=d4eaadbe7c054eee5d869ff29ffc8775bfcaffe9;hp=9c37465dd76099617b8a71b5c289970cd86ff58c;hpb=ff8a98e7e1d368c57b088522586bddcf68d443a5;p=squirrelmail.git diff --git a/src/options_order.php b/src/options_order.php index 9c37465d..a91f865d 100644 --- a/src/options_order.php +++ b/src/options_order.php @@ -1,140 +1,155 @@ -
- - -
- +/** + * options_order.php + * + * Copyright (c) 1999-2005 The SquirrelMail Project Team + * Licensed under the GNU GPL. For full terms see the file COPYING. + * + * Displays messagelist column order options + * + * @version $Id$ + * @package squirrelmail + */ - - '; + echo html_tag( 'td', ' - ' ); + echo html_tag( 'td', $available[$tmp] ); + echo '' . "\n"; + } + echo '

+/** + * Path for SquirrelMail required files. + * @ignore + */ +define('SM_PATH','../'); - -' . _("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 = ''; } - $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 '
' . "\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 '

'; - - if (count($index_order)) - { - 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"; - } - - if (count($index_order) != count($available)) { - echo '
'; - echo '
' . "\n"; + } + + if (count($index_order) != count($available)) { + + $opts = array(); + for ($i=1; $i <= count($available); $i++) { + $found = false; + for ($j=1; $j <= count($index_order); $j++) { + if ($index_order[$j] == $i) { + $found = true; + } } - } - if (!$found) { - echo ""; - } - } - echo ''; - echo ''; - echo ''; - echo ''; - } - - echo '

' . _("Return to options page") . '


'; + if (!$found) { + $opts[$i] = $available[$i]; + } + } -?> -
+ echo addForm('options_order.php', 'post', 'f'); + echo addSelect('add', $opts, '', TRUE); + echo addHidden('method', 'add'); + echo addSubmit(_("Add"), 'submit'); + echo ''; + } + echo html_tag( 'p', '' . _("Return to options page") . '


' ); + +?>