[PHP-users 27126] Re: Smartyでcheckboxesをtableに

nomoto shin-1 @ ca2.so-net.ne.jp
2005年 10月 6日 (木) 12:53:48 JST


  Ryosukeさん、お久しぶりです。nomoto(shin1)です。

>> たしかにハックすればできるのですが・・そういうニーズって無いのかな?
>> Smarty的な解決策は、なさそうですね。
>
>実はcheckboxあたりはベタで書くのがSmarty的なのかも
>
>あるシステムでsmarty使ったところ、html_checkboxesは
>まったく使わずにやりました
>ベタに書くので checked="checked" の前後に{if}入れちゃい
>ましたが、デザイナーさんからの評判はhtml_checkboxesより
>上だった模様^^;
>あんまりカスタム関数でhtml出力すると、htmlからどんどん
>離れていくわけだから、そりゃそーだな、と思いましたよハイ

特殊タグはすごく幅を取るので、デザインのときに幅が崩れて
邪魔になるっていうのも言われたことありますね。だからといって
delimiterを<!--にしちゃうと変数展開もデザイン時に見えなく
なってフォントスタイルの確認がしづらいし・・・

プログラマ的には、外部にもった区分表(対応表)から確認画面、
管理画面などのチェックBOXの文章を一元管理できるメンテナンス性
のよさも捨てがたい・・難しいところです。

あのあと、html_tableをloop=パラメータからの展開ではなくhtml上
から内容取得して出力できるようなblock関数を作ってみました。
(今回の案件はこれで対処できそう。Smartyの初期化用classで
register_blockして使うやつです)

{html_table_block cols=3 table_attr='border="0"'}
{html_checkboxes name=test options=$test_ary selected=$test}
{/html_table_block}

ブロック中のhtmlソースを\nで区切ってテーブルに展開する関数
です。標準のhtml_tableから引用したので、loop=を指定しないだけ
でパラメータは同じ。
\n以外の文字で区切りたい場合に備えてseparator=とか、末尾の余計
なseparator以降を削るlastcut=yesなんてパラメータもつけてみました。

$smarty->register_block('html_table_block', 'smarty_function_html_table_block');

function smarty_function_html_table_block($params, $content, &$smarty, &$repeat)
{
    $table_attr = 'border="1"';
    $tr_attr = '';
    $td_attr = '';
    $cols = 3;
    $rows = 3;
    $trailpad = '&nbsp;';
    $vdir = 'down';
    $hdir = 'right';
    $inner = 'cols';
    
    if (!isset($content)) {
        return '';
    }
    $separator = "\n";
    if (isset($params['separator'])) {
        $separator = $params['separator'];
    }
    $loop = split($separator, trim($content));
    if (isset($params['lastcut'])) {
        array_pop($loop);
    }

    foreach ($params as $_key=>$_value) {
        switch ($_key) {
//            case 'loop':
//                $$_key = (array)$_value;
//                break;
//
            case 'cols':
            case 'rows':
                $$_key = (int)$_value;
                break;

            case 'table_attr':
            case 'trailpad':
            case 'hdir':
            case 'vdir':
            case 'inner':
                $$_key = (string)$_value;
                break;

            case 'tr_attr':
            case 'td_attr':
                $$_key = $_value;
                break;
        }
    }

    $loop_count = count($loop);
    if (empty($params['rows'])) {
        /* no rows specified */
        $rows = ceil($loop_count/$cols);
    } elseif (empty($params['cols'])) {
        if (!empty($params['rows'])) {
            /* no cols specified, but rows */
            $cols = ceil($loop_count/$rows);
        }
    }

    $output = "<table $table_attr>\n";

    for ($r=0; $r<$rows; $r++) {
        $output .= "<tr" . smarty_function_html_table_block_cycle('tr', $tr_attr, $r) . ">\n";
        $rx =  ($vdir == 'down') ? $r*$cols : ($rows-1-$r)*$cols;

        for ($c=0; $c<$cols; $c++) {
            $x =  ($hdir == 'right') ? $rx+$c : $rx+$cols-1-$c;
            if ($inner!='cols') {
                /* shuffle x to loop over rows*/
                $x = floor($x/$cols) + ($x%$cols)*$rows;
            }

            if ($x<$loop_count) {
                $output .= "<td" . smarty_function_html_table_block_cycle('td', $td_attr, $c) . ">" . $loop[$x] . "</td>\n";
            } else {
                $output .= "<td" . smarty_function_html_table_block_cycle('td', $td_attr, $c) . ">$trailpad</td>\n";
            }
        }
        $output .= "</tr>\n";
    }
    $output .= "</table>\n";
    
    return $output;
}

function smarty_function_html_table_block_cycle($name, $var, $no) {
    if(!is_array($var)) {
        $ret = $var;
    } else {
        $ret = $var[$no % count($var)];
    }
    
    return ($ret) ? ' '.$ret : '';
}


PHP-users メーリングリストの案内