[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/layouts/vlayout/modules/Settings/Profiles/ -> DeleteTransferForm.tpl (source)

   1  {*<!--
   2  /*********************************************************************************

   3  ** The contents of this file are subject to the vtiger CRM Public License Version 1.0

   4  * ("License"); You may not use this file except in compliance with the License

   5  * The Original Code is:  vtiger CRM Open Source

   6  * The Initial Developer of the Original Code is vtiger.

   7  * Portions created by vtiger are Copyright (C) vtiger.

   8  * All Rights Reserved.

   9  *

  10  ********************************************************************************/
  11  -->*}
  12  {strip}
  13  <div class="modelContainer">
  14      <div class="row-fluid">
  15          <div class="modal-header">
  16              <button class="close vtButton" data-dismiss="modal">×</button>
  17              <h3>{vtranslate('LBL_DELETE_PROFILE', $QUALIFIED_MODULE)} - {$RECORD_MODEL->getName()}</h3>
  18          </div>
  19          <form class="form-horizontal" id="DeleteModal" name="AddComment" method="post" action="index.php">
  20              <input type="hidden" name="module" value="{$MODULE}" />
  21              <input type="hidden" name="parent" value="Settings" />
  22              <input type="hidden" name="action" value="Delete" />
  23              <input type="hidden" name="record" id="record" value="{$RECORD_MODEL->getId()}" />
  24  
  25              <div class="modal-body">
  26                  <div class="control-group">
  27                      <div class="control-label">{vtranslate('LBL_TRANSFER_ROLES_TO_PROFILE',$QUALIFIED_MODULE)}</div>
  28                      <div class="controls">
  29                          <select id="transfer_record" name="transfer_record" class="chzn-select">
  30                              <optgroup label="{vtranslate('LBL_PROFILES', $QUALIFIED_MODULE)}">
  31                                  {foreach from=$ALL_RECORDS item=PROFILE_MODEL}
  32                                      {assign var=PROFILE_ID value=$PROFILE_MODEL->get('profileid')}
  33                                      {if $PROFILE_ID neq $RECORD_MODEL->getId()}
  34                                          <option value="{$PROFILE_ID}">{$PROFILE_MODEL->get('profilename')}</option>
  35                                      {/if}
  36                                  {/foreach}
  37                              </optgroup>
  38                          </select>
  39                      </div>
  40                  </div>
  41              </div>
  42              <div class="modal-footer">
  43                  <div class=" pull-right cancelLinkContainer">
  44                      <a class="cancelLink" data-dismiss="modal" type="reset">Cancel</a>
  45                  </div>
  46                  <button class="btn btn-success pull-right" type="submit">{vtranslate('LBL_SAVE', $MODULE)}</button>
  47              </div>
  48          </form>
  49      </div>
  50  </div>                
  51  {/strip}


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1