(文字列) (必須)
ファイル: src/Admin/ItemListCSV.php
public static function addHeaders($line) {
$th_h = ',"';
$th_f = '"';
foreach (self::getHeaders() as $header) {
$line .= $th_h . $header . $th_f;
}
return $line;
}
使用するアイテム #使用するアイテム | 説明 |
|---|---|
| src/Admin/ItemListCSV.php: ItemListCSV::getHeaders() | Returns list of Combo-set headers for exported CSV |