Skip to content
Snippets Groups Projects
Select Git revision
  • 626cd575c3b3e0f1d13b4ff423e08acd07a444f7
  • master default
  • add_docker_support
  • 7.1.0h3
  • migration
  • add-ons
  • 6.4.0
  • 7.1.0H3
  • 7.1.0
  • 7.1.0RC
  • 7.0.1
  • 7.0.0
  • 6.5.0
  • 6.4.0
14 results

ListContents.tpl

Blame
  • Forked from vtiger / vtigercrm
    Source project has a limited visibility.
    ImportUserModuleStep1.tpl 2.75 KiB
    {*+**********************************************************************************
    * 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.
    *************************************************************************************}
    
    {strip}
    	<div class="detailViewContainer col-lg-12 col-md-12 col-sm-12" id="importModules">
    		<div class="widget_header row col-lg-12 col-md-12 col-sm-12">
    			<h4>{vtranslate('LBL_IMPORT_MODULE_FROM_ZIP', $QUALIFIED_MODULE)}</h4>
    		</div>
    		<form class="form-horizontal" id="importUserModule" name="importUserModule" action='index.php' method="POST" enctype="multipart/form-data">
    			<input type="hidden" name="module" value="ModuleManager" />
    			<input type="hidden" name="moduleAction" value="Import"/>
    			<input type="hidden" name="parent" value="Settings" />
    			<input type="hidden" name="view" value="ModuleImport" />
    			<input type="hidden" name="mode" value="importUserModuleStep2" />
    			<div class="contents">
    				<div class="row col-lg-12 col-md-12 col-sm-12" style="margin-top:3%">
    					<div class="col-lg-1 col-md-1 col-sm-1">&nbsp;</div>
    					<div class="col-lg-10 col-md-10 col-sm-10">
    						<div class="alert alert-danger">
    							{vtranslate('LBL_DISCLAIMER_FOR_IMPORT_FROM_ZIP', $QUALIFIED_MODULE)}
    						</div>
    						<div>
    							<input type="checkbox" name="acceptDisclaimer" /> &nbsp;&nbsp;<b>{vtranslate('LBL_ACCEPT_WITH_THE_DISCLAIMER', $QUALIFIED_MODULE)}</b>
    						</div>
    						<div name="proceedInstallation" style="margin-top: 15px;" class="fileUploadBtn btn btn-primary">
    							<span><i class="fa fa-laptop"></i> {vtranslate('Select from My Computer', $MODULE)}</span>
    							<input type="file" name="moduleZip" id="moduleZip" size="80px" data-validation-engine="validate[required, funcCall[Vtiger_Base_Validator_Js.invokeValidation]]"
    									data-validator={Zend_Json::encode([['name'=>'UploadModuleZip']])} />
    						</div>
    						<div id="moduleFileDetails" style="margin-top: 15px;"></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 class="btn btn-success saveButton" disabled="disabled" type="submit" name="importFromZip"><strong>{vtranslate('LBL_IMPORT', $MODULE)}</strong></button>&nbsp;&nbsp;
    						<a class="cancelLink" href="index.php?module=ExtensionStore&parent=Settings&view=ExtensionImport&mode=step1">{vtranslate('LBL_CANCEL', $QUALIFIED_MODULE)}</a>
    					</div>
    				</div>
    			</div>
    		</form>
    	</div>
    {/strip}