| Server IP : 10.10.92.66 / Your IP : 104.23.243.84 Web Server : Apache/2.4.52 (Ubuntu) System : Linux jurnalpolinema 5.15.0-177-generic #187-Ubuntu SMP Sat Apr 11 22:54:33 UTC 2026 x86_64 User : jurnal ( 1001) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/jurnal/public_html/templates/frontend/components/ |
Upload File : |
{**
* templates/frontend/components/subscriptionContact.tpl
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @brief Display the contact details for a journal's subscriptions
*
* @uses $subscriptionAdditionalInformation string HTML text description
* subcription information
* @uses $subscriptionMailingAddress string Contact address for subscriptions
* @uses $subscriptionName string Contact name for subscriptions
* @uses $subscriptionPhone string Contact phone number for subscriptions
* @uses $subscriptionEmail string Contact email address for subscriptions
*}
<div class="cmp_subscription_contact">
{if $subscriptionAdditionalInformation}
<div class="description">
{$subscriptionAdditionalInformation|strip_unsafe_html}
</div>
{/if}
{if $subscriptionName || $subscriptionPhone || $subscriptionEmail}
<div class="contact">
<h3>
{translate key="about.subscriptionsContact"}
</h3>
{if $subscriptionName}
<div class="name">
{$subscriptionName|escape}
</div>
{/if}
{if $subscriptionMailingAddress}
<div class="address">
{$subscriptionMailingAddress|nl2br|strip_unsafe_html}
</div>
{/if}
{if $subscriptionPhone}
<div class="phone">
<span class="label">
{translate key="about.contact.phone"}
</span>
<span class="value">
{$subscriptionPhone|escape}
</span>
</div>
{/if}
{if $subscriptionEmail}
<div class="email">
<a href="mailto:{$subscriptionEmail|escape}">
{$subscriptionEmail|escape}
</a>
</div>
{/if}
</div>
{/if}
</div>