项目作者: intoeetive

项目描述 :
Associations fieldtypes for Craft CMS
高级语言: PHP
项目地址: git://github.com/intoeetive/associations.git
创建时间: 2017-02-26T09:46:06Z
项目社区:https://github.com/intoeetive/associations

开源协议:

下载


Associations fieldtypes for Craft CMS

Fieldtypes which allow to assocate extra data with

  • field
  • dropdown/checkbox options

It mimics the Table fieldtype (but with predefined columns). Returns data as table array, which you can loop through like this (assuming avPrices is handle of global and prices is handle of field) :
{% set prices = {} %} {% for price in avPrices.prices %} {% set prices = prices|merge({(price.orig): price.assoc}) %} {% endfor %}