n_oct/plugins/rainlab/builder/models/modelmodel/templates/relation-definitions.php.tpl

18 lines
393 B
Smarty

/**
* @var array {{ relationType }}
*/
public ${{ relationType }} = [
{% for name, relation in relations %}
'{{ name }}' => [
\{{ relation.class }}::class,
{% for prop, value in relation.props %}
'{{ prop }}' => {{ value|raw }}{% if not loop.last %},
{% endif %}
{% endfor %}
]{% if not loop.last %},
{% endif %}
{% endfor %}
];