0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-02-22 04:58:38 +00:00
salesagility_SuiteCRM/themes/SuiteP/include/DetailView/tab_panel_content.tpl
Connor Shea 860eae6179 Fix phone class not being included in relevant fields.
I'm honestly not sure why it works this way, it seems pretty pointless,
but it wasn't working correctly before so I figured I'd fix it.

Smarty doesn't intelligently merge two separate class declarations into one, the second is just thrown away.

This also removes some unnecessary whitespace from the elements
that are output.
2019-09-17 14:36:07 -06:00

212 lines
9.7 KiB
Smarty

{*
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
*
* 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 and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/
*}
{*<!-- tab_panel_content.tpl START -->*}
{*<!-- tab panel main div -->*}
{{foreach name=rowIteration from=$panel key=row item=rowData}}
{*row*}
{*<!-- ROW -->*}
<div class="row detail-view-row">
{{counter name="columnCount" start=0 print=false assign="columnCount"}}
{{foreach name=colIteration from=$rowData key=col item=colData}}
{*column*}
{*<!-- COLUMN -->*}
{{if $smarty.foreach.colIteration.total > 1 && $colData.colspan != 3}}
{*<!-- DIV column - colspan != 3 -->*}
<div class="col-xs-12 col-sm-6 detail-view-row-item">
{{else}}
{*<!-- DIV column - colspan = 3 -->*}
<div class="col-xs-12 col-sm-12 detail-view-row-item">
{{/if}}
{{counter name="fieldCount" start=0 print=false assign="fieldCount"}}
{{foreach name=fieldIteration from=$colData key=field item=subField}}
{{if !(!isset($subField.name) || !$subField.name)}}
{*<!-- [hide!!] -->*}
{{if $fieldCount < $smarty.foreach.colIteration.total && !empty($colData.field.name)}}
{{if $smarty.foreach.colIteration.total > 1 && $colData.colspan != 3}}
{*<!-- DIV inside - colspan != 3 -->*}
{{if $smarty.foreach.colIteration.index == 0}}
<div class="col-xs-12 col-sm-4 label col-1-label">
{{else}}
<div class="col-xs-12 col-sm-4 label col-2-label">
{{/if}}
{{else}}
{*<!-- DIV inside - colspan = 3 -->*}
<div class="col-xs-12 col-sm-2 label col-1-label">
{{/if}}
{*label*}
{*<!-- LABEL -->*}
{{if isset($colData.field.customLabel)}}
{{$colData.field.customLabel}}
{{elseif isset($colData.field.label) && strpos($colData.field.label, '$')}}
{capture name="label" assign="label"}{{$colData.field.label}}{/capture}
{$label|strip_semicolon}:
{{elseif isset($colData.field.label)}}
{capture name="label" assign="label"}{sugar_translate label='{{$colData.field.label}}' module='{{$module}}'}{/capture}
{$label|strip_semicolon}:
{{elseif isset($fields[$colData.field.name])}}
{capture name="label" assign="label"}{sugar_translate label='{{$fields[$colData.field.name].vname}}' module='{{$module}}'}{/capture}
{$label|strip_semicolon}:
{{else}}
&nbsp;
{{/if}}
{{if isset($colData.field.popupHelp) || isset($fields[$colData.field.name]) && isset($fields[$colData.field.name].popupHelp) }}
{{if isset($colData.field.popupHelp) }}
{capture name="popupText" assign="popupText"}{sugar_translate label="{{$colData.field.popupHelp}}" module="{{$module}}"}{/capture}
{{elseif isset($fields[$colData.field.name].popupHelp)}}
{capture name="popupText" assign="popupText"}{sugar_translate label="{{$fields[$colData.field.name].popupHelp}}" module='{{$module}}'}{/capture}
{{/if}}
{sugar_help text=$popupText WIDTH=400}
{{/if}}
</div>
{*<!-- /DIV inside -->*}
{{if $smarty.foreach.colIteration.total > 1 && $colData.colspan != 3}}
{*<!-- phone (version 1) -->*}
<div class="col-xs-12 col-sm-8 detail-view-field{{if $inline_edit && !empty($colData.field.name) && ($fields[$colData.field.name].inline_edit == 1 || !isset($fields[$colData.field.name].inline_edit))}} inlineEdit{{/if}}{{if isset($fields[$colData.field.name].type) && $fields[$colData.field.name].type == 'phone'}} phone{{/if}}" type="{{$fields[$colData.field.name].type}}" field="{{$fields[$colData.field.name].name}}" {{if $colData.colspan}}colspan='{{$colData.colspan}}'{{/if}}>
{{else}}
{*<!-- phone (version 2) -->*}
<div class="col-xs-12 col-sm-10 detail-view-field{{if $inline_edit && !empty($colData.field.name) && ($fields[$colData.field.name].inline_edit == 1 || !isset($fields[$colData.field.name].inline_edit))}} inlineEdit{{/if}}{{if isset($fields[$colData.field.name].type) && $fields[$colData.field.name].type == 'phone'}} phone{{/if}}" type="{{$fields[$colData.field.name].type}}" field="{{$fields[$colData.field.name].name}}" {{if $colData.colspan}}colspan='{{$colData.colspan}}'{{/if}}>
{{/if}}
{{if !empty($colData.field.name)}}
{*<!-- simple hidden start -->*}
{if !$fields.{{$colData.field.name}}.hidden}
{{/if}}
{{$colData.field.prefix}}
{{if ($colData.field.customCode && !$colData.field.customCodeRenderField) || $colData.field.assign}}
{counter name="panelFieldCount" print=false}
<span id="{{$colData.field.name}}" class="sugar_field">{{sugar_evalcolumn var=$colData.field colData=$colData}}</span>
{{elseif $fields[$colData.field.name] && !empty($colData.field.fields) }}
{{foreach from=$colData.field.fields item=subField}}
{{if $fields[$subField]}}
{counter name="panelFieldCount" print=false}
{{sugar_field parentFieldArray='fields' tabindex=$tabIndex vardef=$fields[$subField] displayType='DetailView'}}&nbsp;
{{else}}
{counter name="panelFieldCount" print=false}
{{$subField}}
{{/if}}
{{/foreach}}
{{elseif $fields[$colData.field.name]}}
{counter name="panelFieldCount" print=false}
{{sugar_field parentFieldArray='fields' vardef=$fields[$colData.field.name] displayType='DetailView' displayParams=$colData.field.displayParams typeOverride=$colData.field.type}}
{{/if}}
{{if !empty($colData.field.customCode) && $colData.field.customCodeRenderField}}
{counter name="panelFieldCount" print=false}
<span id="{{$colData.field.name}}" class="sugar_field">{{sugar_evalcolumn var=$colData.field colData=$colData}}</span>
{{/if}}
{{$colData.field.suffix}}
{{if !empty($colData.field.name)}}
{/if}
{*<!-- simple hidden finish -->*}
{{/if}}
{{if $inline_edit && !empty($colData.field.name) && ($fields[$colData.field.name].inline_edit == 1 || !isset($fields[$colData.field.name].inline_edit))}}
<div class="inlineEditIcon col-xs-hidden">
<span class="suitepicon suitepicon-action-edit"></span>
</div>
{{/if}}
</div>
{*<!-- /phone (version 1/2) -->*}
{{/if}}
{{counter name="fieldCount" print=false}}
{*<!-- [/hide!!] -->*}
{{/if}}
{{/foreach}}
</div>
{*<!-- /DIV column -->*}
{{/foreach}}
{{counter name="columnCount" print=false}}
</div>
{{/foreach}}
{*<!-- /tab panel main div -->*}