Файл: concrete5.7.5.6/concrete/single_pages/dashboard/system/registration/postlogin.php
Строк: 72
<?php defined('C5_EXECUTE') or die("Access Denied.");?>
<form method="post" id="login-redirect-form" action="<?php echo $view->url('/dashboard/system/registration/postlogin', 'update_login_redirect')?>">
<?php echo $this->controller->token->output('update_login_redirect')?>
<fieldset>
<legend><?php echo t('Redirect users to:')?></legend>
<div class="form-group">
<div class="input">
<div class="radio">
<label>
<input type="radio" name="LOGIN_REDIRECT" value="HOMEPAGE" <?php echo (!strlen($site_login_redirect) || $site_login_redirect=='HOMEPAGE')?'checked':''?> />
<span><?php echo t('Homepage')?></span>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="LOGIN_REDIRECT" value="PROFILE" <?php echo ($site_login_redirect=='PROFILE')?'checked':''?> />
<span><?php echo t('Member profile (if enabled)')?></span>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="LOGIN_REDIRECT" value="CUSTOM" <?php echo ($site_login_redirect=='CUSTOM')?'checked':''?> />
<span><?php echo t('Custom page')?></span>
</label>
<div id="login_redirect_custom_cid_wrap" style="display:<?php echo ( $site_login_redirect=='CUSTOM' )?'block':'none'?>">
<?php
$formPageSelector = Loader::helper('form/page_selector');
echo $formPageSelector->selectPage('LOGIN_REDIRECT_CID', $login_redirect_cid );
?>
</div>
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="LOGIN_ADMIN_TO_DASHBOARD" value="1" <?php echo ($site_login_admin_to_dashboard)?'checked':''?> />
<span><?php echo t('Redirect administrators to dashboard')?></span>
</label>
</div>
</div>
</div>
</fieldset>
<div class="form-group">
<div class="ccm-dashboard-form-actions-wrapper">
<div class="ccm-dashboard-form-actions">
<button class="pull-right btn btn-primary" type="submit" ><?php echo t('Save')?></button>
</div>
</div>
</div>
</form>
<script type="text/javascript">
$(function(){
$("#login_redirect_custom_cid_wrap .dialog-launch").dialog();
$("input[name='LOGIN_REDIRECT']").each(function(i,el){
el.onchange=function(){isLoginRedirectCustom();}
})
});
function isLoginRedirectCustom(){
if($("input[name='LOGIN_REDIRECT']:checked").val()=='CUSTOM'){
$('#login_redirect_custom_cid_wrap').css('display','block');
}else{
$('#login_redirect_custom_cid_wrap').css('display','none');
}
}
</script>