mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
a6cb3ed903
- Create AclReceivers and AddressedReceivers entities to collect contact names - Create privacy/permission_tooltip.tpl to escape contact names - Move PermissionTooltip module to Privacy namespace - Thanks to @apexrabbit for the report!
50 lines
1.7 KiB
Smarty
50 lines
1.7 KiB
Smarty
{{$l10n.visible_to}}<br>
|
|
{{if !$aclReceivers->isEmpty()}}
|
|
{{foreach from=$aclReceivers->allowCircles item=circle name=allowCircles}}
|
|
<b>{{$circle}}</b>
|
|
{{if !$smarty.foreach.allowCircles.last}}, {{/if}}
|
|
{{/foreach}}
|
|
{{if $aclReceivers->allowContacts && $aclReceivers->allowCircles}}, {{/if}}
|
|
{{foreach from=$aclReceivers->allowContacts item=contact name=allowContacts}}
|
|
{{$contact}}
|
|
{{if !$smarty.foreach.allowContacts.last}}, {{/if}}
|
|
{{/foreach}}
|
|
{{if $aclReceivers->denyCircles && ($aclReceivers->allowContacts || $aclReceivers->allowCircles)}}, {{/if}}
|
|
{{foreach from=$aclReceivers->denyCircles item=circle name=denyCircles}}
|
|
<b><s>{{$circle}}</s></b>
|
|
{{if !$smarty.foreach.denyCircles.last}}, {{/if}}
|
|
{{/foreach}}
|
|
{{if $aclReceivers->denyContacts && ($aclReceivers->denyCircles || $aclReceivers->allowContacts || $aclReceivers->allowCircles)}}, {{/if}}
|
|
{{foreach from=$aclReceivers->denyContacts item=contact name=denyContacts}}
|
|
<s>{{$contact}}</s>
|
|
{{if !$smarty.foreach.denyContacts.last}}, {{/if}}
|
|
{{/foreach}}
|
|
{{elseif !$addressedReceivers->isEmpty()}}
|
|
{{if $addressedReceivers->to}}
|
|
<b>{{$l10n.to}}</b>
|
|
{{', '|join:$addressedReceivers->to}}
|
|
<br>
|
|
{{/if}}
|
|
{{if $addressedReceivers->cc}}
|
|
<b>{{$l10n.cc}}</b>
|
|
{{', '|join:$addressedReceivers->cc}}
|
|
<br>
|
|
{{/if}}
|
|
{{if $addressedReceivers->bcc}}
|
|
<b>{{$l10n.bcc}}</b>
|
|
{{', '|join:$addressedReceivers->bcc}}
|
|
<br>
|
|
{{/if}}
|
|
{{if $addressedReceivers->audience}}
|
|
<b>{{$l10n.audience}}</b>
|
|
{{', '|join:$addressedReceivers->audience}}
|
|
<br>
|
|
{{/if}}
|
|
{{if $addressedReceivers->attributed}}
|
|
<b>{{$l10n.attributed}}</b>
|
|
{{', '|join:$addressedReceivers->attributed}}
|
|
<br>
|
|
{{/if}}
|
|
{{else}}
|
|
{{$privacy}}
|
|
{{/if}}
|