Файл: concrete5.7.5.6/concrete/views/panels/details/page/permissions/advanced.php
Строк: 262
<?php
defined('C5_EXECUTE') or die("Access Denied.");
?>
<section class="ccm-ui">
<header><?php echo t('Page Permissions')?></header>
<?php
$cpc = $c->getPermissionsCollectionObject();
if ($c->getCollectionInheritance() == "PARENT") { ?>
<div class="alert alert-info"><?php echo t('This page inherits its permissions from:');?> <a target="_blank" href="<?php echo URL::to($cpc)?>"><?php echo $cpc->getCollectionName()?></a></div>
<?php } ?>
<div>
<div class="form-group">
<label for="ccm-page-permissions-inherit"><?php echo t('Assign Permissions')?></label>
<select id="ccm-page-permissions-inherit" class="form-control">
<?php if ($c->getCollectionID() > 1) { ?><option value="PARENT" <?php if ($c->getCollectionInheritance() == "PARENT") { ?> selected<?php } ?>><?php echo t('By Area of Site (Hierarchy)')?></option><?php } ?>
<?php if ($c->getMasterCollectionID() > 1) { ?><option value="TEMPLATE" <?php if ($c->getCollectionInheritance() == "TEMPLATE") { ?> selected<?php } ?>><?php echo t('From Page Type Defaults')?></option><?php } ?>
<option value="OVERRIDE" <?php if ($c->getCollectionInheritance() == "OVERRIDE") { ?> selected<?php } ?>><?php echo t('Manually')?></option>
</select>
</div>
<?php if (!$c->isMasterCollection()) { ?>
<div class="form-group">
<label for="ccm-page-permissions-subpages-override-template-permissions"><?php echo t('Subpage Permissions')?></label>
<select id="ccm-page-permissions-subpages-override-template-permissions" class="form-control">
<option value="0"<?php if (!$c->overrideTemplatePermissions()) { ?>selected<?php } ?>><?php echo t('Inherit page type default permissions.')?></option>
<option value="1"<?php if ($c->overrideTemplatePermissions()) { ?>selected<?php } ?>><?php echo t('Inherit the permissions of this page.')?></option>
</select>
</div>
<?php } ?>
</div>
<hr/>
<p class="lead"><?php echo t('Current Permission Set')?></p>
<?php $cat = PermissionKeyCategory::getByHandle('page');?>
<form method="post" id="ccm-permission-list-form" data-dialog-form="permissions" data-panel-detail-form="permissions" action="<?php echo $cat->getToolsURL("save_permission_assignments")?>&cID=<?php echo $c->getCollectionID()?>">
<?php Loader::element('permission/lists/page', array(
'page' => $c, 'editPermissions' => $editPermissions
))?>
</form>
</section>
<div id="ccm-page-permissions-confirm-dialog" style="display: none">
<?php echo t('Changing this setting will affect this page immediately. Are you sure?')?>
<div id="dialog-buttons-start">
<input type="button" class="btn btn-default pull-left" value="Cancel" onclick="jQuery.fn.dialog.closeTop()" />
<input type="button" class="btn btn-primary pull-right" value="Ok" onclick="ccm_pagePermissionsConfirmInheritanceChange()" />
</div>
</div>
<?php if ($editPermissions) { ?>
<div class="ccm-panel-detail-form-actions dialog-buttons">
<button class="pull-left btn btn-default" type="button" data-dialog-action="cancel" data-panel-detail-action="cancel"><?php echo t('Cancel')?></button>
<button class="pull-right btn btn-success" type="button" data-dialog-action="submit" data-panel-detail-action="submit"><?php echo t('Save Changes')?></button>
</div>
<?php } ?>
<script type="text/javascript">
var inheritanceVal = '';
ccm_pagePermissionsCancelInheritance = function() {
$('#ccm-page-permissions-inherit').val(inheritanceVal);
}
ccm_pagePermissionsConfirmInheritanceChange = function() {
jQuery.fn.dialog.showLoader();
$.getJSON('<?php echo $cat->getToolsURL("change_permission_inheritance")?>&cID=<?php echo $c->getCollectionID()?>&mode=' + $('#ccm-page-permissions-inherit').val(), function(r) {
if (r.deferred) {
jQuery.fn.dialog.closeAll();
jQuery.fn.dialog.hideLoader();
ConcreteAlert.notify({
'message': ccmi18n.setPermissionsDeferredMsg,
'title': ccmi18n.setPagePermissions
});
} else {
jQuery.fn.dialog.closeTop();
ccm_refreshPagePermissions();
}
});
}
$(function() {
$('#ccm-permission-list-form').ajaxForm({
dataType: 'json',
beforeSubmit: function() {
jQuery.fn.dialog.showLoader();
},
success: function(r) {
jQuery.fn.dialog.hideLoader();
jQuery.fn.dialog.closeTop();
if (!r.deferred) {
ConcreteAlert.notify({
'message': ccmi18n.setPermissionsMsg,
'title': ccmi18n.setPagePermissions
});
} else {
jQuery.fn.dialog.closeTop();
ConcreteAlert.notify({
'message': ccmi18n.setPermissionsDeferredMsg,
'title': ccmi18n.setPagePermissions
});
}
}
});
inheritanceVal = $('#ccm-page-permissions-inherit').val();
$('#ccm-page-permissions-inherit').change(function() {
$('#dialog-buttons-start').addClass('dialog-buttons');
jQuery.fn.dialog.open({
element: '#ccm-page-permissions-confirm-dialog',
title: '<?php echo t("Confirm Change")?>',
width: 280,
height: 160,
onClose: function() {
ccm_pagePermissionsCancelInheritance();
}
});
});
$('#ccm-page-permissions-subpages-override-template-permissions').change(function() {
jQuery.fn.dialog.showLoader();
$.getJSON('<?php echo $cat->getToolsURL("change_subpage_defaults_inheritance")?>&cID=<?php echo $c->getCollectionID()?>&inherit=' + $(this).val(), function(r) {
if (r.deferred) {
ConcretePanelManager.exitPanelMode();
jQuery.fn.dialog.hideLoader();
ConcreteAlert.notify({
'message': ccmi18n.setPermissionsDeferredMsg,
'title': ccmi18n.setPagePermissions
});
} else {
ccm_refreshPagePermissions();
}
});
});
});
ccm_refreshPagePermissions = function() {
var panel = ConcretePanelManager.getByIdentifier('page');
if (panel) {
panel.openPanelDetail({
'identifier': 'page-permissions',
'url': '<?php echo URL::to("/ccm/system/panels/details/page/permissions")?>',
target: null
});
} else {
jQuery.fn.dialog.showLoader();
$.get('<?php echo URL::to('/ccm/system/panels/details/page/permissions?cID=' . $c->getCollectionID())?>', function(r) {
jQuery.fn.dialog.replaceTop(r);
jQuery.fn.dialog.hideLoader();
});
}
}
</script>