PATH:
home
/
letacommog
/
crmleta
/
layouts
/
v7
/
modules
/
Settings
/
Roles
{*+********************************************************************************** * The contents of this file are subject to the vtiger CRM Public License Version 1.1 * ("License"); You may not use this file except in compliance with the License * The Original Code is: vtiger CRM Open Source * The Initial Developer of the Original Code is vtiger. * Portions created by vtiger are Copyright (C) vtiger. * All Rights Reserved. ************************************************************************************} {* modules/Settings/Roles/views/EditAjax.php *} {* START YOUR IMPLEMENTATION FROM BELOW. Use {debug} for information *} <div class="editViewPageDiv viewContent"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="editViewHeader"> {if $RECORD_MODEL->getId()} <h4> {vtranslate('LBL_EDIT_ROLE', $QUALIFIED_MODULE)} </h4> {else} <h4> {vtranslate('LBL_CREATE_ROLE', $QUALIFIED_MODULE)} </h4> {/if} </div> <hr> <form class="form-horizontal" id="EditView" name="EditRole" method="post" action="index.php" enctype="multipart/form-data"> <div class="editViewBody"> <div class="editViewContents"> <input type="hidden" name="module" value="Roles"> <input type="hidden" name="action" value="Save"> <input type="hidden" name="parent" value="Settings"> {assign var=RECORD_ID value=$RECORD_MODEL->getId()} <input type="hidden" name="record" value="{$RECORD_ID}" /> <input type="hidden" name="mode" value="{$MODE}"> <input type="hidden" name="profile_directly_related_to_role_id" value="{$PROFILE_ID}" /> {assign var=HAS_PARENT value="{if $RECORD_MODEL->getParent()}true{/if}"} {if $HAS_PARENT} <input type="hidden" name="parent_roleid" value="{$RECORD_MODEL->getParent()->getId()}"> {/if} <div name='editContent'> <div class="form-group"> <label class="control-label fieldLabel col-lg-3 col-md-3 col-sm-3"> <strong>{vtranslate('LBL_NAME', $QUALIFIED_MODULE)} <span class="redColor">*</span></strong> </label> <div class="controls fieldValue col-lg-4 col-md-4 col-sm-4" > <div class=""> <input type="text" class="inputElement" name="rolename" id="profilename" value="{$RECORD_MODEL->getName()}" data-rule-required='true' /> </div> </div> </div> <div class="form-group"> <label class="control-label fieldLabel col-lg-3 col-md-3 col-sm-3"> <strong>{vtranslate('LBL_REPORTS_TO', $QUALIFIED_MODULE)}</strong> </label> <div class="controls fieldValue col-lg-4 col-md-4 col-sm-4" > <input type="hidden" name="parent_roleid" {if $HAS_PARENT}value="{$RECORD_MODEL->getParent()->getId()}"{/if}> <div class=""> <input type="text" class="inputElement" name="parent_roleid_display" {if $HAS_PARENT}value="{$RECORD_MODEL->getParent()->getName()}"{/if} readonly> </div></div> </div> <div class="form-group"> <label class="control-label fieldLabel col-lg-3 col-md-3 col-sm-3"> <strong>{vtranslate('LBL_CAN_ASSIGN_RECORDS_TO', $QUALIFIED_MODULE)}</strong> </label> <div class="controls fieldValue col-lg-9 col-md-9 col-sm-9"> <div class="radio"> <label> <input type="radio" value="1"{if !$RECORD_MODEL->get('allowassignedrecordsto')} checked=""{/if} {if $RECORD_MODEL->get('allowassignedrecordsto') eq '1'} checked="" {/if} name="allowassignedrecordsto" data-handler="new" class="alignTop"/> {vtranslate('LBL_ALL_USERS',$QUALIFIED_MODULE)}</label> </div> <div class="radio"> <label> <input type="radio" value="2" {if $RECORD_MODEL->get('allowassignedrecordsto') eq '2'} checked="" {/if} name="allowassignedrecordsto" data-handler="new" class="alignTop"/> {vtranslate('LBL_USERS_WITH_SAME_OR_LOWER_LEVEL',$QUALIFIED_MODULE)}</label> </div> <div class="radio"> <label> <input type="radio" value="3" {if $RECORD_MODEL->get('allowassignedrecordsto') eq '3'} checked="" {/if} name="allowassignedrecordsto" data-handler="new" class="alignTop"/> {vtranslate('LBL_USERS_WITH_LOWER_LEVEL',$QUALIFIED_MODULE)}</label> </div> </div> </div> <div class="form-group"> <label class="control-label fieldLabel col-lg-3 col-md-3 col-sm-3"> <strong>{vtranslate('LBL_PRIVILEGES',$QUALIFIED_MODULE)}</strong> </label> <div class="controls fieldValue col-lg-9 col-md-9 col-sm-9"> <div class="radio"> <label> <input type="radio" value="1" {if $PROFILE_DIRECTLY_RELATED_TO_ROLE} checked="" {/if} name="profile_directly_related_to_role" data-handler="new" class="alignTop"/> {vtranslate('LBL_ASSIGN_NEW_PRIVILEGES',$QUALIFIED_MODULE)}</label> </div> <div class="radio"> <label> <input type="radio" value="0" {if $PROFILE_DIRECTLY_RELATED_TO_ROLE eq false} checked="" {/if} name="profile_directly_related_to_role" data-handler="existing" class="alignTop"/> {vtranslate('LBL_ASSIGN_EXISTING_PRIVILEGES',$QUALIFIED_MODULE)}</label> </div> </div> </div> <br> <div class="form-group " data-content="new" > <div class="profileData col-sm-12"> </div> </div> <div class="form-group " data-content="existing"> <div class="fieldLabel control-label col-lg-3 col-md-3 col-sm-3"></div> <div class="fieldValue controls col-lg-9 col-md-9 col-sm-9"> {assign var="ROLE_PROFILES" value=$RECORD_MODEL->getProfiles()} <select class="select2 inputElement col-lg-12 hide" multiple="true" id="profilesList" name="profiles[]" data-placeholder="{vtranslate('LBL_CHOOSE_PROFILES',$QUALIFIED_MODULE)}" style="width: 460px" data-rule-required="true"> {foreach from=$ALL_PROFILES item=PROFILE} {if $PROFILE->isDirectlyRelated() eq false} <option value="{$PROFILE->getId()}" {if isset($ROLE_PROFILES[$PROFILE->getId()])}selected="true"{/if}>{$PROFILE->getName()}</option> {/if} {/foreach} </select> </div> </div> </div> </div> <div class='modal-overlay-footer clearfix'> <div class="row clearfix"> <div class=' textAlignCenter col-lg-12 col-md-12 col-sm-12 '> <button type='submit' class='btn btn-success saveButton' >{vtranslate('LBL_SAVE', $MODULE)}</button> <a class='cancelLink' href="javascript:history.back()" type="reset">{vtranslate('LBL_CANCEL', $MODULE)}</a> </div> </div> </div> </div> </form> </div> </div> </div> </div>
[+]
..
[-] RoleTree.tpl
[edit]
[-] Index.tpl
[edit]
[-] DeleteTransferForm.tpl
[edit]
[-] EditView.tpl
[edit]
[+]
resources
[-] Popup.tpl
[edit]