想知道是否有一种简便的方法来格式化“后端列表列”值。示例数字值作为货币

最佳答案

它来晚了,但仅供参考:

如果仅用于后端列表,则可以轻松创建一个新的列类型的Currency并使用它。 see documentation

您可以将以下内容添加到Plugin.php中:

public function registerListColumnTypes()
{
  return [
    'currency' => function($value) {
                       return money_format( $value, 2);
                       }
    ];
}

现在,您可以在插件的每个coulmns.yaml中使用它:
columns
  title:
    label: Title
    type: text
  amount:
    type: currency
    label: Amount

关于octobercms - OctoberCMS后端列表格式数字字段作为货币,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41575574/

10-12 17:44