streamline appearence of guest tokens individual perms with those in connedit
This commit is contained in:
parent
4135a10211
commit
4f69bcfc38
@ -161,8 +161,8 @@ class Tokens {
|
|||||||
'$me' => t('My Settings'),
|
'$me' => t('My Settings'),
|
||||||
'$perms' => $perms,
|
'$perms' => $perms,
|
||||||
'$inherited' => t('inherited'),
|
'$inherited' => t('inherited'),
|
||||||
'$notself' => 0,
|
'$notself' => 1,
|
||||||
'$self' => 1,
|
'$self' => 0,
|
||||||
'$permlbl' => t('Individual Permissions'),
|
'$permlbl' => t('Individual Permissions'),
|
||||||
'$permnote' => t('Some permissions may be inherited from your channel\'s <a href="settings"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here.'),
|
'$permnote' => t('Some permissions may be inherited from your channel\'s <a href="settings"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here.'),
|
||||||
'$submit' => t('Submit')
|
'$submit' => t('Submit')
|
||||||
@ -170,4 +170,4 @@ class Tokens {
|
|||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -5,11 +5,12 @@
|
|||||||
</td>
|
</td>
|
||||||
{{if $notself}}
|
{{if $notself}}
|
||||||
<td class="abook-them">
|
<td class="abook-them">
|
||||||
{{if $field.2}}<i class="fa fa-check-square-o"></i>{{else}}<i class="fa fa-square-o"></i>{{/if}}
|
{{if $field.2 === 1}}<i class="fa fa-check-square-o"></i>{{/if}}
|
||||||
|
{{if $field.2 === 0}}<i class="fa fa-square-o"></i>{{/if}}
|
||||||
</td>
|
</td>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<td class="abook-me">
|
<td class="abook-me">
|
||||||
{{if $self || !$field.5 || $twocol }}
|
{{if $self || !$field.5 }}
|
||||||
<input type="checkbox" name='{{$field.0}}' class='abook-edit-me' id='me_id_{{$field.0}}' value="{{$field.4}}" {{if $field.3}}checked="checked"{{/if}} />
|
<input type="checkbox" name='{{$field.0}}' class='abook-edit-me' id='me_id_{{$field.0}}' value="{{$field.4}}" {{if $field.3}}checked="checked"{{/if}} />
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $notself && $field.5}}
|
{{if $notself && $field.5}}
|
||||||
|
Reference in New Issue
Block a user