Add TPL files
This commit is contained in:
154
modules/Connectors/tpls/modify_properties.tpl
Executable file
154
modules/Connectors/tpls/modify_properties.tpl
Executable file
@@ -0,0 +1,154 @@
|
||||
{*
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
*}
|
||||
|
||||
<script type="text/javascript" src="{sugar_getjspath file='include/javascript/sugar_grp_yui_widgets.js'}"></script>
|
||||
<script type="text/javascript" src="{sugar_getjspath file='modules/Connectors/Connector.js'}"></script>
|
||||
<link rel="stylesheet" type="text/css" href="{sugar_getjspath file='modules/Connectors/tpls/tabs.css'}"/>
|
||||
|
||||
{literal}
|
||||
|
||||
<script language="javascript">
|
||||
var _tabView;
|
||||
var _timer;
|
||||
var _sourceArray = new Array();
|
||||
var SourceTabs = {
|
||||
|
||||
init : function() {
|
||||
_tabView = new YAHOO.widget.TabView();
|
||||
|
||||
{/literal}
|
||||
{counter assign=source_count start=0 print=0}
|
||||
{foreach name=connectors from=$SOURCES key=name item=source}
|
||||
{counter assign=source_count}
|
||||
{literal}
|
||||
tab = new YAHOO.widget.Tab({
|
||||
label: '{/literal}{$source.name}{literal} ',
|
||||
dataSrc: {/literal}'index.php?module=Connectors&action=SourceProperties&source_id={$source.id}&to_pdf=true'{literal},
|
||||
cacheData: true,
|
||||
{/literal}
|
||||
{if $source_count == 1}
|
||||
active: true
|
||||
{else}
|
||||
active: false
|
||||
{/if}
|
||||
{literal}
|
||||
});
|
||||
{/literal}
|
||||
_tabView.addTab(tab);
|
||||
tab.id = '{$source.id}';
|
||||
//tab.addListener('beforeContentChange', SourceTabs.tabClicked);
|
||||
tab.addListener('click', SourceTabs.afterContentChange);
|
||||
_sourceArray[{$source_count}-1] = '{$source.id}';
|
||||
{/foreach}
|
||||
{literal}
|
||||
_tabView.appendTo('container');
|
||||
},
|
||||
|
||||
afterContentChange: function(info) {
|
||||
|
||||
if(typeof validate != 'undefined') {
|
||||
validate = new Array();
|
||||
validate["ModifyProperties"] = new Array();
|
||||
}
|
||||
|
||||
tab = _tabView.get('activeTab');
|
||||
if(typeof tab.get('content') != 'undefined') {
|
||||
SUGAR.util.evalScript(tab.get('content'));
|
||||
clearTimeout(_timer);
|
||||
} else {
|
||||
_timer = setTimeout(SourceTabs.afterContentChange, 1000);
|
||||
}
|
||||
},
|
||||
|
||||
fitContainer: function() {
|
||||
content_div = _tabView.getElementsByClassName('yui-content', 'div')[0];
|
||||
content_div.style.overflow='auto';
|
||||
content_div.style.height='405px';
|
||||
}
|
||||
}
|
||||
YAHOO.util.Event.onDOMReady(SourceTabs.init);
|
||||
</script>
|
||||
{/literal}
|
||||
<form name="ModifyProperties" method="POST">
|
||||
<input type="hidden" name="modify" value="true">
|
||||
<input type="hidden" name="module" value="Connectors">
|
||||
<input type="hidden" name="action" value="SaveModifyProperties">
|
||||
<input type="hidden" name="source_id" value="">
|
||||
<input type="hidden" name="reset_to_default" value="">
|
||||
|
||||
{counter assign=source_count start=0 print=0}
|
||||
{foreach name=connectors from=$SOURCES key=name item=source}
|
||||
{counter assign=source_count}
|
||||
<input type="hidden" name="source{$source_count}" value="{$source.id}">
|
||||
{/foreach}
|
||||
|
||||
<table border="0">
|
||||
<tr><td>
|
||||
<input title="{$APP.LBL_SAVE_BUTTON_LABEL}" accessKey="{$APP.LBL_SAVE_BUTTON_TITLE}" class="button" type="submit" name="button" value="{$APP.LBL_SAVE_BUTTON_LABEL}" onclick="return check_form('ModifyProperties') || confirm('{$mod.LBL_CONFIRM_CONTINUE_SAVE}');">
|
||||
<input title="{$APP.LBL_CANCEL_BUTTON_LABEL}" accessKey="{$APP.LBL_CANCEL_BUTTON_KEY}" class="button" onclick="document.ModifyProperties.action.value='ConnectorSettings'; document.ModifyProperties.module.value='Connectors';" type="submit" name="button" value="{$APP.LBL_CANCEL_BUTTON_LABEL}">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
||||
<tr><td class="tabDetailViewDF">
|
||||
<div >
|
||||
<div id="container" style="height: 465px">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table border="0">
|
||||
<tr><td>
|
||||
<input title="{$APP.LBL_SAVE_BUTTON_LABEL}" accessKey="{$APP.LBL_SAVE_BUTTON_TITLE}" class="button" type="submit" name="button" value="{$APP.LBL_SAVE_BUTTON_LABEL}" onclick="return check_form('ModifyProperties') || confirm('{$mod.LBL_CONFIRM_CONTINUE_SAVE}');">
|
||||
<input title="{$APP.LBL_CANCEL_BUTTON_LABEL}" accessKey="{$APP.LBL_CANCEL_BUTTON_KEY}" class="button" onclick="document.ModifyProperties.action.value='ConnectorSettings'; document.ModifyProperties.module.value='Connectors';" type="submit" name="button" value="{$APP.LBL_CANCEL_BUTTON_LABEL}">
|
||||
</td></tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<script type="text/javascript">
|
||||
{literal}
|
||||
YAHOO.util.Event.onDOMReady(SourceTabs.fitContainer);
|
||||
{/literal}
|
||||
|
||||
{foreach name=required_fields from=$REQUIRED_FIELDS key=id item=fields}
|
||||
{foreach from=$fields key=field_key item=field_label}
|
||||
addToValidate("ModifyProperties", "{$id}_{$field_key}", "alpha", true, "{$field_label}");
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
</script>
|
||||
Reference in New Issue
Block a user