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

25 lines
511 B
Smarty
Raw Normal View History

2023-06-17 20:52:33 +00:00
{% if multisite %}{% if multisite.fields %}
/**
* @var array propagatable fields.
*/
protected $propagatable = [
{% for field in multisite.fields %}
'{{ field }}'{% if not loop.last %},
{% endif %}
{% endfor %}
];
{% else %}
/**
* @var array propagatable fields.
*/
protected $propagatable = [];
{% endif %}{% if multisite.sync %}
/**
* @var array propagatableSync for multisite.
*/
protected $propagatableSync = true;
{% endif %}{% endif %}