Ignore:
Timestamp:
2011/02/09 20:27:32 (13 years ago)
Author:
shutta
Message:

未使用処理の削除
refs #628

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/util/SC_Utils.php

    r20116 r20126  
    612612    } 
    613613 
    614     /* 配列の要素をPDFフォーマットで出力する。*/ 
    615     function sfGetPDFList($array) { 
    616         foreach($array as $key => $val) { 
    617             $line .= "\t".$val; 
    618         } 
    619         $line.="\n"; 
    620         return $line; 
    621     } 
    622  
    623614 
    624615 
     
    10961087    } 
    10971088 
    1098     // PDF用のRGBカラーを返す 
    1099     function sfGetPdfRgb($hexrgb) { 
    1100         $hex = substr($hexrgb, 0, 2); 
    1101         $r = hexdec($hex) / 255; 
    1102  
    1103         $hex = substr($hexrgb, 2, 2); 
    1104         $g = hexdec($hex) / 255; 
    1105  
    1106         $hex = substr($hexrgb, 4, 2); 
    1107         $b = hexdec($hex) / 255; 
    1108  
    1109         return array($r, $g, $b); 
    1110     } 
    1111  
    11121089    // 再帰的に多段配列を検索して一次元配列(Hidden引渡し用配列)に変換する。 
    11131090    function sfMakeHiddenArray($arrSrc, $arrDst = array(), $parent_key = "") { 
Note: See TracChangeset for help on using the changeset viewer.