Files
CRM/layouts/vlayout/modules/Settings/Picklist/CreateView.tpl
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

48 lines
2.6 KiB
Smarty

{*<!--
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("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.
*
********************************************************************************/
-->*}
{strip}
<div class='modelContainer modal basicCreateView'>
<div class="modal-header">
<button data-dismiss="modal" class="close" title="{vtranslate('LBL_CLOSE')}">x</button>
<h3>{vtranslate('LBL_ADD_ITEM_TO', $QUALIFIED_MODULE)}&nbsp;{vtranslate($SELECTED_PICKLIST_FIELDMODEL->get('label'),$SOURCE_MODULE)}</h3>
</div>
<form name="addItemForm" class="form-horizontal" method="post" action="index.php">
<input type="hidden" name="module" value="{$MODULE}" />
<input type="hidden" name="parent" value="Settings" />
<input type="hidden" name="source_module" value="{$SELECTED_MODULE_NAME}" />
<input type="hidden" name="action" value="SaveAjax" />
<input type="hidden" name="mode" value="add" />
<input type="hidden" name="picklistName" value="{$SELECTED_PICKLIST_FIELDMODEL->get('name')}" />
<input type="hidden" name="pickListValues" value='{Vtiger_Util_Helper::toSafeHTML(ZEND_JSON::encode($SELECTED_PICKLISTFIELD_ALL_VALUES))}' />
<div class="modal-body tabbable">
<div class="control-group">
<div class="control-label"><span class="redColor">*</span>{vtranslate('LBL_ITEM_VALUE',$QUALIFIED_MODULE)}</div>
<div class="controls"><input type="text" data-prompt-position="topLeft:70" data-validation-engine="validate[required, funcCall[Vtiger_Base_Validator_Js.invokeValidation]]" data-validator={Zend_Json::encode([['name'=>'FieldLabel']])} name="newValue"></div>
</div>
{if $SELECTED_PICKLIST_FIELDMODEL->isRoleBased()}
<div class="control-group">
<div class="control-label">{vtranslate('LBL_ASSIGN_TO_ROLE',$QUALIFIED_MODULE)}</div>
<div class="controls">
<select class="rolesList" name="rolesSelected[]" multiple style="min-width: 220px" data-placeholder="{vtranslate('LBL_CHOOSE_ROLES',$QUALIFIED_MODULE)}">
<option value="all" selected>{vtranslate('LBL_ALL_ROLES',$QUALIFIED_MODULE)}</option>
{foreach from=$ROLES_LIST item=ROLE}
<option value="{$ROLE->get('roleid')}">{$ROLE->get('rolename')}</option>
{/foreach}
</select>
</div>
</div>
{/if}
</div>
{include file='ModalFooter.tpl'|@vtemplate_path:$qualifiedName}
</form>
</div>
{/strip}