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

112 lines
5.6 KiB
Smarty

{*+**********************************************************************************
* 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="row">
{assign var=IS_AUTH value=($REGISTRATION_STATUS and $PASSWORD_STATUS)}
{assign var=EXTENSIONS_COUNT value=0}
{foreach item=EXTENSION from=$EXTENSIONS_LIST name=extensions}
{if !$EXTENSION->isVtigerCompatible()}{continue}{/if}
{assign var=EXTENSIONS_COUNT value=$EXTENSIONS_COUNT+1}
{if $EXTENSION->isAlreadyExists()}
{assign var=EXTENSION_MODULE_MODEL value= $EXTENSION->get('moduleModel')}
{else}
{assign var=EXTENSION_MODULE_MODEL value= 'false'}
{/if}
{assign var=IS_FREE value=(($EXTENSION->get('price') eq 'Free') or ($EXTENSION->get('price') eq 0))}
<div class="col-lg-4 col-md-6 col-sm-6 " style="margin-bottom:10px;">
<div class="extension_container extensionWidgetContainer">
<div class="extension_header">
<div class="font-x-x-large boxSizingBorderBox">{vtranslate($EXTENSION->get('label'), $QUALIFIED_MODULE)}</div>
<input type="hidden" name="extensionName" value="{$EXTENSION->get('name')}" />
<input type="hidden" name="extensionUrl" value="{$EXTENSION->get('downloadURL')}" />
<input type="hidden" name="moduleAction" value="{if ($EXTENSION->isAlreadyExists()) and (!$EXTENSION_MODULE_MODEL->get('trial'))}{if $EXTENSION->isUpgradable()}Upgrade{else}Installed{/if}{else}Install{/if}" />
<input type="hidden" name="extensionId" value="{$EXTENSION->get('id')}" />
</div>
<div style="padding-left:3px;">
<div class="row extension_contents" style="border:none;">
<div class="col-sm-8 col-xs-8">
<div class="row extensionDescription" style="word-wrap:break-word;margin: 0px;">
{assign var=SUMMARY value=$EXTENSION->get('summary')}
{if empty($SUMMARY)}
{assign var=SUMMARY value={$EXTENSION->get('description')|truncate:100}}
{/if}
{$SUMMARY}
</div>
</div>
<div class="col-sm-4 col-xs-4">
{if $EXTENSION->get('thumbnailURL') neq NULL}
{assign var=imageSource value=$EXTENSION->get('thumbnailURL')}
<img width="100%" height="100%" class="thumbnailImage" src="{$imageSource}"/>
{else}
<i class="fa fa-picture-o" style="color:#ddd;font-size: 90px;" title="Image not available"></i>
{/if}
</div>
</div>
<div class="extensionInfo">
<div class="row">
{assign var=ON_RATINGS value=$EXTENSION->get('avgrating')}
<div class="col-sm-5 col-xs-5">
<span class="rating" data-score="{$ON_RATINGS}" data-readonly=true></span>
<span>{if $EXTENSION->get('avgrating')}&nbsp;({$EXTENSION->get('avgrating')}){/if}</span>
</div>
<div class="col-sm-7 col-xs-7">
<div class="pull-right">
{if $EXTENSION->isVtigerCompatible()}
<button class="btn btn-sm btn-default installExtension addButton" style="margin-right:5px;">{vtranslate('LBL_MORE_DETAILS', $QUALIFIED_MODULE)}</button>
{if $EXTENSION->isAlreadyExists()}
{if ($EXTENSION->isUpgradable())}
<button class="oneclickInstallFree btn btn-success btn-sm margin0px {if $IS_AUTH}authenticated {else} loginRequired{/if}">
{vtranslate('LBL_UPGRADE', $QUALIFIED_MODULE)}
</button>
{else}
{if $EXTENSION_MODULE_MODEL neq 'false' && $EXTENSION_MODULE_MODEL->get('trial')}
<span class="alert alert-info">{vtranslate('LBL_TRIAL_INSTALLED', $QUALIFIED_MODULE)}</span>
{else}
<span class="alert alert-info" style="vertical-align:middle; padding: 3px 8px;">{vtranslate('LBL_INSTALLED', $QUALIFIED_MODULE)}</span>
{/if}
{if !($EXTENSION->get('price') eq 'Free' or $EXTENSION->get('price') eq 0)}
&nbsp;&nbsp;
<button class="oneclickInstallPaid btn btn-info {if $IS_AUTH}authenticated {else} loginRequired{/if}" data-trial={if $EXTENSION->get('trialdays') gt 0}true{else}false{/if}>{vtranslate('LBL_BUY',$QUALIFIED_MODULE)}${$EXTENSION->get('price')}</button>
{/if}
{/if}
{else}
{if $EXTENSION->get('price') eq 'Free' or $EXTENSION->get('price') eq 0}
<button class="oneclickInstallFree btn btn-success btn-sm {if $IS_AUTH}authenticated {else} loginRequired{/if}">{vtranslate('LBL_INSTALL', $QUALIFIED_MODULE)}</button>
{else}
<button class="oneclickInstallPaid btn btn-info btn-sm {if $IS_AUTH}authenticated {else} loginRequired{/if}" data-trial=false>{vtranslate('LBL_BUY',$QUALIFIED_MODULE)}${$EXTENSION->get('price')}</button>
{/if}
{/if}
{else}
<span class="alert alert-error">{vtranslate('LBL_EXTENSION_NOT_COMPATABLE', $QUALIFIED_MODULE)}</span>
{/if}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{/foreach}
{if empty($EXTENSIONS_LIST) || $EXTENSIONS_COUNT eq 0}
<div class="row">
<div class="col-sm-2 col-xs-2"></div>
<div class="col-sm-8 col-xs-8">
<br>
<br>
<br>
<h3><center> {vtranslate('LBL_NO_EXTENSIONS_FOUND', $QUALIFIED_MODULE)} </center></h3>
</div>
<div class="col-sm-2 col-xs-2"></div>
</div>
{/if}
</div>
{/strip}