Файл: concrete5.7.5.6/concrete/elements/permission/keys/add_file.php
Строк: 109
<?php defined('C5_EXECUTE') or die("Access Denied."); ?>
<?php $included = $permissionAccess->getAccessListItems(); ?>
<?php $excluded = $permissionAccess->getAccessListItems(PermissionKey::ACCESS_TYPE_EXCLUDE); ?>
<?php
$extensions = Loader::helper('concrete/file')->getAllowedFileExtensions();
?>
<?php $form = Loader::helper('form'); ?>
<?php if (count($included) > 0 || count($excluded) > 0) { ?>
<?php if (count($included) > 0) { ?>
<h3><?php echo t('Who can add what?')?></h3>
<?php foreach($included as $assignment) {
$entity = $assignment->getAccessEntityObject();
?>
<div class="clearfix">
<label><?php echo $entity->getAccessEntityLabel()?></label>
<div class="input">
<?php echo $form->select('fileTypesIncluded[' . $entity->getAccessEntityID() . ']', array('A' => t('All File Types'), 'C' => t('Custom')), $assignment->getFileTypesAllowedPermission())?><br/><br/>
<ul class="inputs-list" <?php if ($assignment->getFileTypesAllowedPermission() != 'C') { ?>style="display: none"<?php } ?>>
<?php foreach($extensions as $ext) {
$checked = ($assignment->getFileTypesAllowedPermission() == 1 || ($assignment->getFileTypesAllowedPermission() == 'C' && in_array($ext, $assignment->getFileTypesAllowedArray())));
?>
<li><label><input type="checkbox" name="extensionInclude[<?php echo $entity->getAccessEntityID()?>][]" value="<?php echo $ext?>" <?php if ($checked) { ?> checked="checked" <?php } ?> /> <span><?php echo $ext?></span></label></li>
<?php } ?>
</ul>
</div>
</div>
<?php }
} ?>
<?php if (count($excluded) > 0) { ?>
<h3><?php echo t('Who can't add what?')?></h3>
<?php foreach($excluded as $assignment) {
$entity = $assignment->getAccessEntityObject();
?>
<div class="clearfix">
<label><?php echo $entity->getAccessEntityLabel()?></label>
<div class="input">
<?php echo $form->select('fileTypesExcluded[' . $entity->getAccessEntityID() . ']', array('N' => t('No File Types'), 'C' => t('Custom')), $assignment->getFileTypesAllowedPermission())?><br/><br/>
<ul class="inputs-list" <?php if ($assignment->getFileTypesAllowedPermission() != 'C') { ?>style="display: none"<?php } ?>>
<?php foreach($extensions as $ext) {
$checked = in_array($ext, $assignment->getFileTypesAllowedArray());
?>
<li><label><input type="checkbox" name="extensionExclude[<?php echo $entity->getAccessEntityID()?>][]" value="<?php echo $ext?>" <?php if ($checked) { ?> checked="checked" <?php } ?> /> <span><?php echo $ext?></span></label></li>
<?php } ?>
</ul>
</div>
</div>
<?php }
} ?>
<?php } else { ?>
<p><?php echo t('No users or groups selected.')?></p>
<?php } ?>
<script type="text/javascript">
$(function() {
$("#ccm-tab-content-custom-options select").change(function() {
if ($(this).val() == 'C') {
$(this).parent().find('ul.inputs-list').show();
} else {
$(this).parent().find('ul.inputs-list').hide();
}
});
});
</script>