/**
 * Smarty {mailto} function plugin extension, fixes character encoding problem
 *
 * @param array  $aParams  parameters
 * @param Smarty &$oSmarty smarty object
 *
 * @return string
 */
function smarty_function_oxmailto($aParams, &$oSmarty)
{
    if (isset($aParams['encode']) && $aParams['encode'] == 'javascript') {
        $sAddress = isset($aParams['address']) ? $aParams['address'] : '';
        $sText = $sAddress;
        $aMailParms = array();
        foreach ($aParams as $sVarName => $sValue) {
            switch ($sVarName) {
                case 'cc':
                case 'bcc':
                case 'followupto':
                    if ($sValue) {
                        $aMailParms[] = $sVarName . '=' . str_replace(array('%40', '%2C'), array('@', ','), rawurlencode($sValue));
                    }
                    break;
                case 'subject':
                case 'newsgroups':
                    $aMailParms[] = $sVarName . '=' . rawurlencode($sValue);
                    break;
                case 'extra':
                case 'text':
                    $sName = "s" . ucfirst($sVarName);
                    ${$sName} = $sValue;
                default:
            }
        }
        for ($iCtr = 0; $iCtr < count($aMailParms); $iCtr++) {
            $sAddress .= $iCtr == 0 ? '?' : '&';
            $sAddress .= $aMailParms[$iCtr];
        }
        $sString = 'document.write(\'<a href="mailto:' . $sAddress . '" ' . $sExtra . '>' . $sText . '</a>\');';
        $sEncodedString = "%" . wordwrap(current(unpack("H*", $sString)), 2, "%", true);
        return '<script type="text/javascript">eval(decodeURIComponent(\'' . $sEncodedString . '\'))</script>';
    } else {
        include_once $oSmarty->_get_plugin_filepath('function', 'mailto');
        return smarty_function_mailto($aParams, $oSmarty);
    }
}
array_pop($this->_tag_stack);
?>
</p>

<p id="b"><?php 
echo $this->_tpl_vars['_copyright'];
?>
&copy;&nbsp;<?php 
echo $this->_tpl_vars['_service_hotline'];
echo $this->_tpl_vars['service_tel'];
?>
&nbsp;<?php 
echo $this->_tpl_vars['_service_email'];
?>
:<?php 
echo smarty_function_mailto(array('text' => $this->_tpl_vars['service_email'], 'address' => $this->_tpl_vars['service_email'], 'encode' => 'javascript'), $this);
?>
</p>
</div>
</div>
<script language="javascript" src="scripts/highlight.js"></script>
<?php 
if ($this->_tpl_vars['highlight_str']) {
    ?>
<script>
$('#res div:not("#no_result,#rs")').highlight('<?php 
    echo $this->_tpl_vars['highlight_str'];
    ?>
');
</script>
<?php 
        ?>
: <?php 
        echo is_array($_tmp = $this->_tpl_vars['journalSettings']['supportPhone']) ? $this->_run_mod_handler('escape', true, $_tmp) : $this->_plugins['modifier']['escape'][0][0]->smartyEscape($_tmp);
        ?>
<br />
	<?php 
    }
    ?>
	<?php 
    if (!empty($this->_tpl_vars['journalSettings']['supportEmail'])) {
        ?>
		<?php 
        echo $this->_plugins['function']['translate'][0][0]->smartyTranslate(array('key' => "about.contact.email"), $this);
        ?>
: <?php 
        echo smarty_function_mailto(array('address' => is_array($_tmp = $this->_tpl_vars['journalSettings']['supportEmail']) ? $this->_run_mod_handler('escape', true, $_tmp) : $this->_plugins['modifier']['escape'][0][0]->smartyEscape($_tmp), 'encode' => 'hex'), $this);
        ?>
<br />
	<?php 
    }
    ?>
</p>
<?php 
}
?>

<?php 
$_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => "common/footer.tpl", 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
    function content_555770635d6048_02809565($_smarty_tpl)
    {
        if (!is_callable('smarty_function_mailto')) {
            include '/home/matej/webapps/webshop/tools/smarty/plugins/function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<section id="block_contact_infos" class="footer-block">
	<div>
        <h4 class="title_block mainFont"><?php 
        echo smartyTranslate(array('s' => 'Contact Us', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
        <ul class="toggle-footer">
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
            	<li>
            		<i class="icon-home"></i><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, ENT_QUOTES, 'UTF-8', true);
            if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
                ?>
, <?php 
                echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, ENT_QUOTES, 'UTF-8', true);
            }
            ?>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
            	<li>
            		<i class="icon-mobile-phone"></i><?php 
            echo smartyTranslate(array('s' => 'Call us now:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
            	<li>
            		<i class="icon-envelope"></i><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo smarty_function_mailto(array('address' => htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, ENT_QUOTES, 'UTF-8', true), 'encode' => "hex"), $_smarty_tpl);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
        </ul>
    </div>
</section>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_561cd205cb3072_55705805($_smarty_tpl)
    {
        if (!is_callable('smarty_function_mailto')) {
            include 'E:\\wwwroot\\projects\\web\\Arnaud_Lachaume\\Prestashop\\Source\\prestashop\\tools\\smarty\\plugins\\function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<section id="block_contact_infos" class="footer-block col-xs-12 col-sm-4">
	<div>
        <h4><?php 
        echo smartyTranslate(array('s' => 'Store Information', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
        <ul class="toggle-footer">
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
            	<li>
            		<i class="icon-map-marker"></i><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, ENT_QUOTES, 'UTF-8', true);
            if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
                ?>
, <?php 
                echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, ENT_QUOTES, 'UTF-8', true);
            }
            ?>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
            	<li>
            		<i class="icon-phone"></i><?php 
            echo smartyTranslate(array('s' => 'Call us now:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
            	<li>
            		<i class="icon-envelope-alt"></i><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo smarty_function_mailto(array('address' => htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, ENT_QUOTES, 'UTF-8', true), 'encode' => "hex"), $_smarty_tpl);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
        </ul>
    </div>
</section>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_52a1fabe2c9bd9_70353162($_smarty_tpl)
    {
        if (!is_callable('smarty_modifier_escape')) {
            include '/var/www/vhosts/www.a3workout.com/httpdocs/shop3/tools/smarty/plugins/modifier.escape.php';
        }
        if (!is_callable('smarty_function_mailto')) {
            include '/var/www/vhosts/www.a3workout.com/httpdocs/shop3/tools/smarty/plugins/function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<div id="block_contact_infos">
	<p class="title_block"><?php 
        echo smartyTranslate(array('s' => 'Contact us', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</p>
	<ul>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
<li><strong><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, 'htmlall', 'UTF-8');
            ?>
</strong></li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
            ?>
<li><pre><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, 'htmlall', 'UTF-8');
            ?>
</pre></li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
<li><?php 
            echo smartyTranslate(array('s' => 'Tel:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 <?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, 'htmlall', 'UTF-8');
            ?>
</li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
<li><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 <?php 
            echo smarty_function_mailto(array('address' => smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, 'htmlall', 'UTF-8'), 'encode' => "hex"), $_smarty_tpl);
            ?>
</li><?php 
        }
        ?>
	</ul>
</div>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_5598e079a1da07_27185008($_smarty_tpl)
    {
        if (!is_callable('smarty_function_mailto')) {
            include 'C:\\xampp\\htdocs\\zocart\\tools\\smarty\\plugins\\function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<section id="block_contact_infos" class="footer-block">
	<div>
        <h4 class="title_block mainFont"><?php 
        echo smartyTranslate(array('s' => 'Contact Us', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
        <ul class="toggle-footer">
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
            	<li>
            		<i class="icon-home"></i><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, ENT_QUOTES, 'UTF-8', true);
            if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
                ?>
, <?php 
                echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, ENT_QUOTES, 'UTF-8', true);
            }
            ?>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
            	<li>
            		<i class="icon-mobile-phone"></i><?php 
            echo smartyTranslate(array('s' => 'Call us now:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
            	<li>
            		<i class="icon-envelope"></i><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo smarty_function_mailto(array('address' => htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, ENT_QUOTES, 'UTF-8', true), 'encode' => "hex"), $_smarty_tpl);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
        </ul>
    </div>
</section>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_529f43279b29e5_12231169($_smarty_tpl)
    {
        if (!is_callable('smarty_modifier_escape')) {
            include 'C:\\wamp\\www\\a3shop\\tools\\smarty\\plugins\\modifier.escape.php';
        }
        if (!is_callable('smarty_function_mailto')) {
            include 'C:\\wamp\\www\\a3shop\\tools\\smarty\\plugins\\function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<div id="block_contact_infos">
	<p class="title_block"><?php 
        echo smartyTranslate(array('s' => 'Contact us', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</p>
	<ul>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
<li><strong><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, 'htmlall', 'UTF-8');
            ?>
</strong></li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
            ?>
<li><pre><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, 'htmlall', 'UTF-8');
            ?>
</pre></li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
<li><?php 
            echo smartyTranslate(array('s' => 'Tel:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 <?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, 'htmlall', 'UTF-8');
            ?>
</li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
<li><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 <?php 
            echo smarty_function_mailto(array('address' => smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, 'htmlall', 'UTF-8'), 'encode' => "hex"), $_smarty_tpl);
            ?>
</li><?php 
        }
        ?>
	</ul>
</div>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_56671902ea0816_54339400($_smarty_tpl)
    {
        if (!is_callable('smarty_modifier_escape')) {
            include '/srv/www/helveti/helveti.cz/tools/smarty/plugins/modifier.escape.php';
        }
        if (!is_callable('smarty_function_mailto')) {
            include '/srv/www/helveti/helveti.cz/tools/smarty/plugins/function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<div id="block_contact_infos">
	<h3 class="title_block"><?php 
        echo smartyTranslate(array('s' => 'Contact us', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h3>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
<p><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, 'htmlall', 'UTF-8');
            ?>
</p><?php 
        }
        ?>
	<ul>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
            ?>
<li class="link"><span class="fa fa-map-marker"> </span> <?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, 'htmlall', 'UTF-8');
            ?>
</li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
<li class="link"><span class="fa fa-mobile-phone"> </span><?php 
            echo smartyTranslate(array('s' => 'Phone', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
: <?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, 'htmlall', 'UTF-8');
            ?>
</li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
<li class="link"><span class="fa fa-envelope"> </span><?php 
            echo smartyTranslate(array('s' => 'Email', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
: <?php 
            echo smarty_function_mailto(array('address' => smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, 'htmlall', 'UTF-8'), 'encode' => "hex"), $_smarty_tpl);
            ?>
</li><?php 
        }
        ?>
	</ul>
</div>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_560ec47e7300d0_27151790($_smarty_tpl)
    {
        if (!is_callable('smarty_modifier_escape')) {
            include '/Applications/XAMPP/xamppfiles/htdocs/prestashop/tools/smarty/plugins/modifier.escape.php';
        }
        if (!is_callable('smarty_function_mailto')) {
            include '/Applications/XAMPP/xamppfiles/htdocs/prestashop/tools/smarty/plugins/function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<div id="block_contact_infos">
	<p class="title_block"><?php 
        echo smartyTranslate(array('s' => 'Contact us', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</p>
	<ul>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
<li><strong><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, 'htmlall', 'UTF-8');
            ?>
</strong></li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
            ?>
<li><pre><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, 'htmlall', 'UTF-8');
            ?>
</pre></li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
<li><?php 
            echo smartyTranslate(array('s' => 'Tel:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 <?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, 'htmlall', 'UTF-8');
            ?>
</li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
<li><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 <?php 
            echo smarty_function_mailto(array('address' => smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, 'htmlall', 'UTF-8'), 'encode' => "hex"), $_smarty_tpl);
            ?>
</li><?php 
        }
        ?>
	</ul>
</div>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_530ffd724dc8c8_47102880($_smarty_tpl)
    {
        if (!is_callable('smarty_modifier_escape')) {
            include '/Applications/MAMP/htdocs/prestashop/tools/smarty/plugins/modifier.escape.php';
        }
        if (!is_callable('smarty_function_mailto')) {
            include '/Applications/MAMP/htdocs/prestashop/tools/smarty/plugins/function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<section id="block_contact_infos" class="footer-block col-xs-12 col-sm-4">
	<div>
        <h4><?php 
        echo smartyTranslate(array('s' => 'Store Information', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
        <ul class="toggle-footer">
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
            	<li>
            		<i class="icon-map-marker"></i><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, 'html', 'UTF-8');
            if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
                ?>
, <?php 
                echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, 'html', 'UTF-8');
            }
            ?>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
            	<li>
            		<i class="icon-phone"></i><?php 
            echo smartyTranslate(array('s' => 'Call us now toll free:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, 'html', 'UTF-8');
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
            	<li>
            		<i class="icon-envelope-alt"></i><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo smarty_function_mailto(array('address' => smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, 'html', 'UTF-8'), 'encode' => "hex"), $_smarty_tpl);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
        </ul>
    </div>
</section>
<!-- /MODULE Block contact infos -->
<?php 
    }
</ul>
<h4>Asesores:</h4>
<ul>
<?php 
$_from = $this->_tpl_vars['tutors'];
if (!is_array($_from) && !is_object($_from)) {
    settype($_from, 'array');
}
if (count($_from)) {
    foreach ($_from as $this->_tpl_vars['it']) {
        echo '<li>';
        echo $this->_tpl_vars['it']->getName();
        echo ' ';
        echo $this->_tpl_vars['it']->getLastname();
        echo ' (';
        echo smarty_function_mailto(array('address' => $this->_tpl_vars['it']->getMail(), 'encode' => 'javascript'), $this);
        echo ')</li>';
        ?>

<?php 
    }
}
unset($_from);
?>
</ul>

<h4>Palabras clave</h4>
<p class="keyword">
<?php 
$_from = $this->_tpl_vars['paper']->getKeywords();
if (!is_array($_from) && !is_object($_from)) {
    function content_55bf247a8f4819_60940082($_smarty_tpl)
    {
        if (!is_callable('smarty_function_mailto')) {
            include '/Applications/MAMP/htdocs/testguidingyou2/tools/smarty/plugins/function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<section id="block_contact_infos" class="footer-block col-xs-12 col-sm-2">
	<div>
        <h4><?php 
        echo smartyTranslate(array('s' => 'Store Information', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
        <ul class="toggle-footer">

<!---->

            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
            	<li>
            		<i class="icon-home" style="line-height: inherit;"></i><span style="line-height: inherit;"><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
            ?>
            	<li style="min-height:inherit; line-height:inherit;">
            		<i class="icon-map-marker"></i>
            		<span><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
            	<li>
            		<i class="icon-phone" style="line-height:inherit;"></i><?php 
            echo smartyTranslate(array('s' => 'Call us now:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span style="line-height:inherit;"><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
            	<li>
            		<i class="icon-envelope-alt" style="line-height:inherit;"></i><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span style="line-height:inherit;"><?php 
            echo smarty_function_mailto(array('address' => htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, ENT_QUOTES, 'UTF-8', true), 'encode' => "hex"), $_smarty_tpl);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
        </ul>
    </div>
</section>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_53ae65364ab2c1_00924253($_smarty_tpl)
    {
        if (!is_callable('smarty_modifier_escape')) {
            include '/var/www/vipinsg/tools/smarty/plugins/modifier.escape.php';
        }
        if (!is_callable('smarty_function_mailto')) {
            include '/var/www/vipinsg/tools/smarty/plugins/function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<div id="block_contact_infos">
	<h4><?php 
        echo smartyTranslate(array('s' => 'Contact us', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
	<ul>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
<li><strong><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, 'htmlall', 'UTF-8');
            ?>
</strong></li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
            ?>
<li><pre><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, 'htmlall', 'UTF-8');
            ?>
</pre></li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
<li><?php 
            echo smartyTranslate(array('s' => 'Tel:'), $_smarty_tpl);
            ?>
 <?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, 'htmlall', 'UTF-8');
            ?>
</li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
<li><?php 
            echo smartyTranslate(array('s' => 'Email:'), $_smarty_tpl);
            ?>
 <?php 
            echo smarty_function_mailto(array('address' => smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, 'htmlall', 'UTF-8'), 'encode' => "hex"), $_smarty_tpl);
            ?>
</li><?php 
        }
        ?>
	</ul>
</div>
<!-- /MODULE Block contact infos -->
<?php 
    }
                echo is_array($_tmp = is_array($_tmp = $this->_tpl_vars['row']['customer_id']) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)) ? $this->_run_mod_handler('h', true, $_tmp) : smarty_modifier_h($_tmp);
                ?>
');">編集</a></span></td>
                <td class="center" rowspan="2"><span class="icon_delete"><a href="#" onclick="return fnDelete('<?php 
                echo is_array($_tmp = is_array($_tmp = $this->_tpl_vars['row']['customer_id']) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)) ? $this->_run_mod_handler('h', true, $_tmp) : smarty_modifier_h($_tmp);
                ?>
');">削除</a></span></td>
            </tr>
            <tr>
                <td><?php 
                $this->assign('pref', is_array($_tmp = $this->_tpl_vars['row']['pref']) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp));
                echo is_array($_tmp = $this->_tpl_vars['arrPref'][$this->_tpl_vars['pref']]) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp);
                ?>
</td>
                <td><?php 
                echo smarty_function_mailto(array('address' => is_array($_tmp = $this->_tpl_vars['row']['email']) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp), 'encode' => 'javascript'), $this);
                ?>
</a><?php 
                if ((is_array($_tmp = $this->_tpl_vars['row']['status']) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)) == 1) {
                    ?>
<br /><a href="#" onclick="return fnReSendMail('<?php 
                    echo is_array($_tmp = is_array($_tmp = $this->_tpl_vars['row']['customer_id']) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)) ? $this->_run_mod_handler('h', true, $_tmp) : smarty_modifier_h($_tmp);
                    ?>
');">仮登録メール再送</a><?php 
                }
                ?>
</td>
            </tr>
        <?php 
            }
        }
    function content_52401a156ba4e5_52104249($_smarty_tpl)
    {
        if (!is_callable('smarty_modifier_escape')) {
            include 'E:\\xampp\\htdocs\\vatfairfoot\\tools\\smarty\\plugins\\modifier.escape.php';
        }
        if (!is_callable('smarty_function_mailto')) {
            include 'E:\\xampp\\htdocs\\vatfairfoot\\tools\\smarty\\plugins\\function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<div id="block_contact_infos">
	<h4><?php 
        echo smartyTranslate(array('s' => 'Contact us', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
	<ul>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
<li><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, 'htmlall', 'UTF-8');
            ?>
</li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
            ?>
<li><?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, 'htmlall', 'UTF-8');
            ?>
</li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
<li><?php 
            echo smartyTranslate(array('s' => 'Tel:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 <?php 
            echo smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, 'htmlall', 'UTF-8');
            ?>
</li><?php 
        }
        ?>
		<?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
<li><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 <?php 
            echo smarty_function_mailto(array('address' => smarty_modifier_escape($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, 'htmlall', 'UTF-8'), 'encode' => "hex"), $_smarty_tpl);
            ?>
</li><?php 
        }
        ?>
	</ul>
</div>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_56e73cb40ec2d8_59662292($_smarty_tpl)
    {
        if (!is_callable('smarty_function_mailto')) {
            include 'T:\\home\\stamp-expert.ru\\www\\tools\\smarty\\plugins\\function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<section id="block_contact_infos" class="footer-block col-xs-12 col-sm-4">
	<div>
        <h4><?php 
        echo smartyTranslate(array('s' => 'Store Information', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
        <ul class="toggle-footer">
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
            	<li>
            		<i class="icon-map-marker"></i><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, ENT_QUOTES, 'UTF-8', true);
            if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
                ?>
, <?php 
                echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, ENT_QUOTES, 'UTF-8', true);
            }
            ?>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
            	<li>
            		<i class="icon-phone"></i><?php 
            echo smartyTranslate(array('s' => 'Call us now:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
            	<li>
            		<i class="icon-envelope-alt"></i><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo smarty_function_mailto(array('address' => htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, ENT_QUOTES, 'UTF-8', true), 'encode' => "hex"), $_smarty_tpl);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
        </ul>
    </div>
</section>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_55b6fbc1ed00f1_52227406($_smarty_tpl)
    {
        if (!is_callable('smarty_modifier_date_format')) {
            include '/var/www/vhosts/ecmd.com.tw/subdomains/case2/httpdocs/jasonwang826/php/Smarty-3.1.12/libs/plugins/modifier.date_format.php';
        }
        if (!is_callable('smarty_function_mailto')) {
            include '/var/www/vhosts/ecmd.com.tw/subdomains/case2/httpdocs/jasonwang826/php/Smarty-3.1.12/libs/plugins/function.mailto.php';
        }
        ?>
<!DOCTYPE html>
<html>
	<head>
		
		<title>康和期貨經理事業 後台管理</title>
		<!--[if gt IE 8]>
			<meta http-equiv="X-UA-Compatible" content="IE=edge" />
		<![endif]-->
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
		<meta name="robots" content="noindex, nofollow">
		<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JQUERY_INCLUDE'];
        ?>
"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JQUERY_UI_INCLUDE'];
        ?>
"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JQUERY_UI_I18N'];
        ?>
" id="jquery-ui-i18n" data-lang-id="zh-tw"></script>
		<link rel="stylesheet" href="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JQUERY_UI_CSS'];
        ?>
" type="text/css" />
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/json2.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/jquery.cookie.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/jasonwang826.ui.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/timepicker.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/jquery.metisMenu.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/jquery.urldecoder.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/validationEngine/jquery.validationEngine.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/validationEngine/languages/jquery.validationEngine-zh_TW.js"></script>
		<script type="text/javascript" src="/admin/js/jquery.validationEngine-custom.js"></script>
		<link rel="stylesheet" href="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/css/validationEngine/validationEngine.jquery.ciaoca.css" type="text/css" />
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/config.js"></script>
		<link rel="stylesheet" href="/admin/css/dfstyle.css" type="text/css" />
		<link rel="stylesheet" href="/admin/css/bootstrap.min.css" type="text/css" />
		<script src="/admin/js/bootstrap.min.js"></script>
		<link rel="stylesheet" href="/admin/css/sb-admin.css" type="text/css" />
		<script src="/admin/js/sb-admin.js"></script>
		<link rel="stylesheet" href="/admin/css/font-awesome.css" type="text/css" />
		
	<link rel="stylesheet" href="/admin/css/edit.css" type="text/css" />
	<script src="/admin/js/edit.js"></script>
	<script src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['CKEDITOR_ALIAS'];
        ?>
/standard/ckeditor.js"></script>
	<script src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['CKEDITOR_ALIAS'];
        ?>
/standard/adapters/jquery.js"></script>

		<script type="text/javascript">
		<!--
			function onJasonwang826UIReady(e)	{
				<?php 
        if (isset($_smarty_tpl->tpl_vars['notify']->value)) {
            ?>
					<?php 
            $_smarty_tpl->tpl_vars['n'] = new Smarty_Variable();
            $_smarty_tpl->tpl_vars['n']->_loop = false;
            $_from = $_smarty_tpl->tpl_vars['notify']->value;
            if (!is_array($_from) && !is_object($_from)) {
                settype($_from, 'array');
            }
            foreach ($_from as $_smarty_tpl->tpl_vars['n']->key => $_smarty_tpl->tpl_vars['n']->value) {
                $_smarty_tpl->tpl_vars['n']->_loop = true;
                ?>
						$.jnotify(
							{
								message : '<?php 
                echo $_smarty_tpl->tpl_vars['n']->value->message;
                ?>
',
								type : '<?php 
                echo $_smarty_tpl->tpl_vars['n']->value->type;
                ?>
',
								time : '<?php 
                echo $_smarty_tpl->tpl_vars['n']->value->time;
                ?>
'
							}
						);
					<?php 
            }
            ?>
				<?php 
        }
        ?>
				<?php 
        if (isset($_smarty_tpl->tpl_vars['alert']->value)) {
            ?>
					$.alert(
						'<?php 
            echo $_smarty_tpl->tpl_vars['alert']->value->message;
            ?>
',
						'<?php 
            echo $_smarty_tpl->tpl_vars['alert']->value->title;
            ?>
',
						undefined,
						function(e)	{	<?php 
            if ($_smarty_tpl->tpl_vars['alert']->value->url != null) {
                ?>
	location='<?php 
                echo $_smarty_tpl->tpl_vars['alert']->value->url;
                ?>
';	<?php 
            }
            ?>
	}
					);
				<?php 
        }
        ?>
			}
		//-->
		</script>
	</head>
	<body>
		<div id="wrapper">

			<nav class="navbar navbar-default navbar-fixed-top" role="navigation" style="margin-bottom: 0">
				<div class="navbar-header">
					<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".sidebar-collapse">
						<span class="sr-only">Toggle navigation</span>
						<span class="icon-bar"></span>
						<span class="icon-bar"></span>
						<span class="icon-bar"></span>
					</button>
					<a class="navbar-brand" href="/admin/">康和期貨經理事業 後台管理</a>
				</div>
				<!-- /.navbar-header -->

				<ul class="nav navbar-top-links navbar-right">
					
					<li class="dropdown">
						<a class="dropdown-toggle" data-toggle="dropdown" href="#">
							<i class="fa fa-list fa-fw"></i>  <i class="fa fa-caret-down"></i>
						</a>
						<ul class="dropdown-menu dropdown-user">
												</ul>
						<!-- /.dropdown-user -->
					</li>
					<!-- /.dropdown -->
					
					<li class="dropdown">
						<a class="dropdown-toggle" data-toggle="dropdown" href="#">
							<i class="fa fa-user fa-fw"></i>  <i class="fa fa-caret-down"></i>
						</a>
						<ul class="dropdown-menu dropdown-user">
							<li><a href="/admin/account/"><i class="fa fa-user fa-fw"></i> 我的帳號</a>
							</li>
							<li class="divider"></li>
							<li><a href="/admin/login.php?action=logout"><i class="fa fa-sign-out fa-fw"></i> 登出</a>
							</li>
						</ul>
						<!-- /.dropdown-user -->
					</li>
					<!-- /.dropdown -->
				</ul>
				<!-- /.navbar-top-links -->
				<div class="navbar-default navbar-static-side" role="navigation">
					<div class="sidebar-collapse">
						<ul class="nav" id="side-menu">
							<li>
								<a href="Javascript:void(0);">首頁管理</a>
								<ul>
									<li><a href="/admin/banner/">幻燈片</a></li>
									<li><a href="/admin/slogon/">標語</a></li>
								</ul>
							</li>
							<li><a href="/admin/fundprice/">每日淨值</a></li>
							<li><a href="/admin/web-content-about/">康和期經介紹</a></li>
							<li><a href="/admin/team/">康和菁英(人物)</a></li>
							<li>
								<a href="Javascript:void(0);">康和期經事業</a>
								<ul>
									<li><a href="/admin/web-content/?id=futures.managed">期貨經理事業</a></li>
									<li><a href="/admin/web-content/?id=futures.fund">期貨信託事業</a></li>
									<li><a href="/admin/web-content/?id=futures.advisory">期貨顧問事業</a></li>
								</ul>
							</li>
							<li>
								<a href="Javascript:void(0);">產品介紹</a>
								<ul>
									<li><a href="/admin/fund/">基金</a></li>
									<li><a href="/admin/trust/">全權委託</a></li>
									<li><a href="/admin/advisory/">顧問服務</a></li>
								</ul>
							</li>
							<li><a href="/admin/news/">市場消息</a></li>
							<li>
								<a href="Javascript:void(0);">客服中心</a>
								<ul>
									<li><a href="/admin/report/">投資月報</a></li>
									<li><a href="/admin/document/">文件下載</a></li>
									<li><a href="/admin/saleschannel/">銷售機構</a></li>
									<li><a href="/admin/faq/">常見問題</a></li>
								</ul>
							</li>
							<li>
								<a href="Javascript:void(0);">聯絡表單</a>
								<ul>
									<li><a href="/admin/contactus-service/">客服中心</a></li>
									<li><a href="/admin/contactus-divisions/">三事業</a></li>
								</ul>
							</li>
							<li><a href="/admin/setting/">網站基本設定</a></li>
							<li><a href="/admin/user/">管理員設定</a></li>
						</ul>
						<!-- /#side-menu -->
					</div>
					<!-- /.sidebar-collapse -->
				</div>
				<!-- /.navbar-static-side -->
			</nav>
			 <div id="page-wrapper">
				
  <div class="row">
		<div class="col-lg-12">
			<h3 class="page-header"><?php 
        echo $_smarty_tpl->tpl_vars['page_title']->value;
        ?>
</h3>
		</div>
	</div>
	
	<form class="edit" method="post" action="./" enctype="multipart/form-data">
		<input type="hidden" name="action" value="<?php 
        if ($_REQUEST['action'] == 'new') {
            ?>
insert<?php 
        } else {
            ?>
update<?php 
        }
        ?>
" />
		<input type="hidden" name="id" value="<?php 
        echo htmlspecialchars($_smarty_tpl->tpl_vars['r']->value['id'], ENT_QUOTES, 'UTF-8', true);
        ?>
" />
		<div class="row list">
			<div class="col-lg-12">
				<div class="panel panel-default">
					<div class="panel-heading">
						回覆<?php 
        echo $_smarty_tpl->tpl_vars['page_title']->value;
        ?>

						<div class="pull-right"><a href="./">列表</a></div>
					</div>
					<div class="panel-body">

						<div class="form-group">
							<label>留言者姓名</label>
							<div><?php 
        echo $_smarty_tpl->tpl_vars['r']->value['name'];
        ?>
</div>
						</div>

						<div class="form-group">
							<label>發問時間</label>
							<div><?php 
        echo smarty_modifier_date_format($_smarty_tpl->tpl_vars['r']->value['cdate'], '%Y/%m/%d %H:%M');
        ?>
</div>
						</div>

						<div class="form-group">
							<label>留言者email</label>
							<div><?php 
        echo smarty_function_mailto(array('address' => $_smarty_tpl->tpl_vars['r']->value['email']), $_smarty_tpl);
        ?>
</div>
						</div>

						<div class="form-group">
							<label>聯絡電話</label>
							<div><?php 
        echo $_smarty_tpl->tpl_vars['r']->value['telno'];
        ?>
</div>
						</div>

						<div class="form-group">
							<label>問題或建議類別</label>
							<div><?php 
        echo $_smarty_tpl->tpl_vars['r']->value['category'];
        ?>
</div>
						</div>

						<div class="form-group">
							<label>內文</label>
							<div><?php 
        echo nl2br($_smarty_tpl->tpl_vars['r']->value['content']);
        ?>
</div>
						</div>

						<div class="form-group">
							<div><label>回覆</label></div>
							<textarea name="reply" rows="8" class="form-control"><?php 
        echo htmlspecialchars($_smarty_tpl->tpl_vars['r']->value['reply'], ENT_QUOTES, 'UTF-8', true);
        ?>
</textarea>
						</div>

						<div class="form-group">
							<label>回覆時間</label>
							<div><?php 
        echo smarty_modifier_date_format($_smarty_tpl->tpl_vars['r']->value['reply_date'], '%Y/%m/%d %H:%M');
        ?>
</div>
						</div>

						<button type="submit" class="btn btn-success">確認修改</button>

					</div>

				</div>
			</div>
		</div>
	</form>

			</div>
			<!-- /#page-wrapper -->
		</div>
	</body>
</html>
<?php 
    }
    function content_56139653874746_42347560($_smarty_tpl)
    {
        if (!is_callable('smarty_function_mailto')) {
            include '/home/oobox/domains/oobox.stronazen.pl/public_html/xiaomipl/tools/smarty/plugins/function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<section id="block_contact_infos" class="footer-block col-xs-12 col-sm-4">
	<div>
        <h4><?php 
        echo smartyTranslate(array('s' => 'Store Information', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
        <ul class="toggle-footer">
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
            	<li>
            		<i class="icon-map-marker"></i><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, ENT_QUOTES, 'UTF-8', true);
            if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
                ?>
, <?php 
                echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, ENT_QUOTES, 'UTF-8', true);
            }
            ?>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
            	<li>
            		<i class="icon-phone"></i><?php 
            echo smartyTranslate(array('s' => 'Call us now:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
            	<li>
            		<i class="icon-envelope-alt"></i><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo smarty_function_mailto(array('address' => htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, ENT_QUOTES, 'UTF-8', true), 'encode' => "hex"), $_smarty_tpl);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
        </ul>
    </div>
</section>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_55b6f69b72e2d8_20545224($_smarty_tpl)
    {
        if (!is_callable('smarty_function_mailto')) {
            include '/var/www/vhosts/ecmd.com.tw/subdomains/case2/httpdocs/jasonwang826/php/Smarty-3.1.12/libs/plugins/function.mailto.php';
        }
        if (!is_callable('smarty_modifier_date_format')) {
            include '/var/www/vhosts/ecmd.com.tw/subdomains/case2/httpdocs/jasonwang826/php/Smarty-3.1.12/libs/plugins/modifier.date_format.php';
        }
        if (!is_callable('smarty_function_pager')) {
            include '/var/www/vhosts/ecmd.com.tw/subdomains/case2/httpdocs/jasonwang826/php/smarty-plugins/sys/function.pager.php';
        }
        ?>
<!DOCTYPE html>
<html>
	<head>
		
		<title>康和期貨經理事業 後台管理</title>
		<!--[if gt IE 8]>
			<meta http-equiv="X-UA-Compatible" content="IE=edge" />
		<![endif]-->
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
		<meta name="robots" content="noindex, nofollow">
		<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JQUERY_INCLUDE'];
        ?>
"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JQUERY_UI_INCLUDE'];
        ?>
"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JQUERY_UI_I18N'];
        ?>
" id="jquery-ui-i18n" data-lang-id="zh-tw"></script>
		<link rel="stylesheet" href="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JQUERY_UI_CSS'];
        ?>
" type="text/css" />
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/json2.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/jquery.cookie.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/jasonwang826.ui.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/timepicker.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/jquery.metisMenu.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/jquery.urldecoder.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/validationEngine/jquery.validationEngine.js"></script>
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/js/validationEngine/languages/jquery.validationEngine-zh_TW.js"></script>
		<script type="text/javascript" src="/admin/js/jquery.validationEngine-custom.js"></script>
		<link rel="stylesheet" href="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/css/validationEngine/validationEngine.jquery.ciaoca.css" type="text/css" />
		<script type="text/javascript" src="<?php 
        echo $_SERVER['JASONWANG826_CONFIG']['JASONWANG826_URL'];
        ?>
/config.js"></script>
		<link rel="stylesheet" href="/admin/css/dfstyle.css" type="text/css" />
		<link rel="stylesheet" href="/admin/css/bootstrap.min.css" type="text/css" />
		<script src="/admin/js/bootstrap.min.js"></script>
		<link rel="stylesheet" href="/admin/css/sb-admin.css" type="text/css" />
		<script src="/admin/js/sb-admin.js"></script>
		<link rel="stylesheet" href="/admin/css/font-awesome.css" type="text/css" />
		
	<link rel="stylesheet" href="/admin/css/list.css" type="text/css" />
	<script src="/admin/js/list.js"></script>

		<script type="text/javascript">
		<!--
			function onJasonwang826UIReady(e)	{
				<?php 
        if (isset($_smarty_tpl->tpl_vars['notify']->value)) {
            ?>
					<?php 
            $_smarty_tpl->tpl_vars['n'] = new Smarty_Variable();
            $_smarty_tpl->tpl_vars['n']->_loop = false;
            $_from = $_smarty_tpl->tpl_vars['notify']->value;
            if (!is_array($_from) && !is_object($_from)) {
                settype($_from, 'array');
            }
            foreach ($_from as $_smarty_tpl->tpl_vars['n']->key => $_smarty_tpl->tpl_vars['n']->value) {
                $_smarty_tpl->tpl_vars['n']->_loop = true;
                ?>
						$.jnotify(
							{
								message : '<?php 
                echo $_smarty_tpl->tpl_vars['n']->value->message;
                ?>
',
								type : '<?php 
                echo $_smarty_tpl->tpl_vars['n']->value->type;
                ?>
',
								time : '<?php 
                echo $_smarty_tpl->tpl_vars['n']->value->time;
                ?>
'
							}
						);
					<?php 
            }
            ?>
				<?php 
        }
        ?>
				<?php 
        if (isset($_smarty_tpl->tpl_vars['alert']->value)) {
            ?>
					$.alert(
						'<?php 
            echo $_smarty_tpl->tpl_vars['alert']->value->message;
            ?>
',
						'<?php 
            echo $_smarty_tpl->tpl_vars['alert']->value->title;
            ?>
',
						undefined,
						function(e)	{	<?php 
            if ($_smarty_tpl->tpl_vars['alert']->value->url != null) {
                ?>
	location='<?php 
                echo $_smarty_tpl->tpl_vars['alert']->value->url;
                ?>
';	<?php 
            }
            ?>
	}
					);
				<?php 
        }
        ?>
			}
		//-->
		</script>
	</head>
	<body>
		<div id="wrapper">

			<nav class="navbar navbar-default navbar-fixed-top" role="navigation" style="margin-bottom: 0">
				<div class="navbar-header">
					<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".sidebar-collapse">
						<span class="sr-only">Toggle navigation</span>
						<span class="icon-bar"></span>
						<span class="icon-bar"></span>
						<span class="icon-bar"></span>
					</button>
					<a class="navbar-brand" href="/admin/">康和期貨經理事業 後台管理</a>
				</div>
				<!-- /.navbar-header -->

				<ul class="nav navbar-top-links navbar-right">
					
					<li class="dropdown">
						<a class="dropdown-toggle" data-toggle="dropdown" href="#">
							<i class="fa fa-list fa-fw"></i>  <i class="fa fa-caret-down"></i>
						</a>
						<ul class="dropdown-menu dropdown-user">
												</ul>
						<!-- /.dropdown-user -->
					</li>
					<!-- /.dropdown -->
					
					<li class="dropdown">
						<a class="dropdown-toggle" data-toggle="dropdown" href="#">
							<i class="fa fa-user fa-fw"></i>  <i class="fa fa-caret-down"></i>
						</a>
						<ul class="dropdown-menu dropdown-user">
							<li><a href="/admin/account/"><i class="fa fa-user fa-fw"></i> 我的帳號</a>
							</li>
							<li class="divider"></li>
							<li><a href="/admin/login.php?action=logout"><i class="fa fa-sign-out fa-fw"></i> 登出</a>
							</li>
						</ul>
						<!-- /.dropdown-user -->
					</li>
					<!-- /.dropdown -->
				</ul>
				<!-- /.navbar-top-links -->
				<div class="navbar-default navbar-static-side" role="navigation">
					<div class="sidebar-collapse">
						<ul class="nav" id="side-menu">
							<li>
								<a href="Javascript:void(0);">首頁管理</a>
								<ul>
									<li><a href="/admin/banner/">幻燈片</a></li>
									<li><a href="/admin/slogon/">標語</a></li>
								</ul>
							</li>
							<li><a href="/admin/fundprice/">每日淨值</a></li>
							<li><a href="/admin/web-content-about/">康和期經介紹</a></li>
							<li><a href="/admin/team/">康和菁英(人物)</a></li>
							<li>
								<a href="Javascript:void(0);">康和期經事業</a>
								<ul>
									<li><a href="/admin/web-content/?id=futures.managed">期貨經理事業</a></li>
									<li><a href="/admin/web-content/?id=futures.fund">期貨信託事業</a></li>
									<li><a href="/admin/web-content/?id=futures.advisory">期貨顧問事業</a></li>
								</ul>
							</li>
							<li>
								<a href="Javascript:void(0);">產品介紹</a>
								<ul>
									<li><a href="/admin/fund/">基金</a></li>
									<li><a href="/admin/trust/">全權委託</a></li>
									<li><a href="/admin/advisory/">顧問服務</a></li>
								</ul>
							</li>
							<li><a href="/admin/news/">市場消息</a></li>
							<li>
								<a href="Javascript:void(0);">客服中心</a>
								<ul>
									<li><a href="/admin/report/">投資月報</a></li>
									<li><a href="/admin/document/">文件下載</a></li>
									<li><a href="/admin/saleschannel/">銷售機構</a></li>
									<li><a href="/admin/faq/">常見問題</a></li>
								</ul>
							</li>
							<li>
								<a href="Javascript:void(0);">聯絡表單</a>
								<ul>
									<li><a href="/admin/contactus-service/">客服中心</a></li>
									<li><a href="/admin/contactus-divisions/">三事業</a></li>
								</ul>
							</li>
							<li><a href="/admin/setting/">網站基本設定</a></li>
							<li><a href="/admin/user/">管理員設定</a></li>
						</ul>
						<!-- /#side-menu -->
					</div>
					<!-- /.sidebar-collapse -->
				</div>
				<!-- /.navbar-static-side -->
			</nav>
			 <div id="page-wrapper">
				
	<div class="row">
		<div class="col-lg-12">
			<h3 class="page-header"><?php 
        echo $_smarty_tpl->tpl_vars['page_title']->value;
        ?>
</h3>
		</div>
	</div>
	
	<div class="row list">
		<div class="col-lg-12">
			<div class="pull-right" style="margin-bottom: 10px;">
				<button type="button" class="btn btn-primary btn-xs" onclick="location.href='./?action=new'"><i class="fa fa-plus"></i> 新增</button>
				<button type="button" class="btn btn-danger btn-xs" onclick="if(confirm('確認刪除?')) $('#ListForm').submit();"><i class="fa fa-trash-o"></i> 刪除</button>
			</div>
			
			<form name="ListForm" id="ListForm" method="post" action="./?action=delete" >
				<div class="table-responsive">
						
					<table class="table table-striped table-bordered table-hover dataTable no-footer" id="dataTables-example" aria-describedby="dataTables-example_info">
						<tr>
							<th width="60px"></th>
							<th>帳號</th>
							<th width="150px">姓名</th>
							<th width="240px">email</th>
							<th width="160px">最後一次登入時間</th>
							<th width="80px">是否顯示</th>
							<th width="60px">編輯</th>
						</tr>
						<?php 
        $_smarty_tpl->tpl_vars['r'] = new Smarty_Variable();
        $_smarty_tpl->tpl_vars['r']->_loop = false;
        $_from = $_smarty_tpl->tpl_vars['pager']->value->rsData;
        if (!is_array($_from) && !is_object($_from)) {
            settype($_from, 'array');
        }
        foreach ($_from as $_smarty_tpl->tpl_vars['r']->key => $_smarty_tpl->tpl_vars['r']->value) {
            $_smarty_tpl->tpl_vars['r']->_loop = true;
            ?>
							<tr>
								<td><input type="checkbox" name="ids[]" value="<?php 
            echo $_smarty_tpl->tpl_vars['r']->value->id;
            ?>
" /></td>
								<td><?php 
            echo $_smarty_tpl->tpl_vars['r']->value->account;
            ?>
</td>
								<td><?php 
            echo $_smarty_tpl->tpl_vars['r']->value->name;
            ?>
</td>
								<td><?php 
            echo smarty_function_mailto(array('address' => $_smarty_tpl->tpl_vars['r']->value->email), $_smarty_tpl);
            ?>
</td>
								<td><?php 
            echo smarty_modifier_date_format($_smarty_tpl->tpl_vars['r']->value->last_login, '%Y/%m/%d %H:%M');
            ?>
</td>
								<td class="enable" data-tovalue="<?php 
            if ($_smarty_tpl->tpl_vars['r']->value->enable == 'Y') {
                ?>
N<?php 
            } else {
                ?>
Y<?php 
            }
            ?>
" data-id="<?php 
            echo $_smarty_tpl->tpl_vars['r']->value->id;
            ?>
"><?php 
            if ($_smarty_tpl->tpl_vars['r']->value->enable == 'Y') {
                ?>
是<?php 
            } else {
                ?>
否<?php 
            }
            ?>
</td>
								<td>
									<a href="./?action=edit&id=<?php 
            echo $_smarty_tpl->tpl_vars['r']->value->id;
            ?>
" title="修改"><i class="fa fa-pencil"></i></a>
									<a href="javascript:void(0)" onclick="if(confirm('確認刪除?'))location.href='./?action=delete&ids=<?php 
            echo $_smarty_tpl->tpl_vars['r']->value->id;
            ?>
'" title="刪除"><i class="fa fa-trash-o"></i></a> 
								</td>
							</tr>
					   <?php 
        }
        ?>
					</table>
					
					<div class="pages"> 
						<?php 
        echo smarty_function_pager(array('info' => $_smarty_tpl->tpl_vars['pager']->value), $_smarty_tpl);
        ?>

					</div>
				</div>
				<!-- /.table-responsive -->
			</form>
		  
		</div>
		<!-- /.col-lg-12 -->
	</div>

			</div>
			<!-- /#page-wrapper -->
		</div>
	</body>
</html>
<?php 
    }
    function content_564a3acb4e1750_55077935($_smarty_tpl)
    {
        if (!is_callable('smarty_function_mailto')) {
            include 'C:\\Program Files (x86)\\EasyPHP-DevServer-14.1VC9\\data\\localweb\\projects\\Prestashop\\prestashop\\tools\\smarty\\plugins\\function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<section id="block_contact_infos" class="footer-block col-xs-12 col-sm-4">
	<div>
        <h4><?php 
        echo smartyTranslate(array('s' => 'Store Information', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
        <ul class="toggle-footer">
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
            	<li>
            		<i class="icon-map-marker"></i><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, ENT_QUOTES, 'UTF-8', true);
            if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
                ?>
, <?php 
                echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, ENT_QUOTES, 'UTF-8', true);
            }
            ?>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
            	<li>
            		<i class="icon-phone"></i><?php 
            echo smartyTranslate(array('s' => 'Call us now:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
            	<li>
            		<i class="icon-envelope-alt"></i><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo smarty_function_mailto(array('address' => htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, ENT_QUOTES, 'UTF-8', true), 'encode' => "hex"), $_smarty_tpl);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
        </ul>
    </div>
</section>
<!-- /MODULE Block contact infos -->
<?php 
    }
    not get
<?php 
}
?>
   
<br>
Name: <?php 
echo $this->_tpl_vars['names']['first'];
?>
, <?php 
echo $this->_tpl_vars['names'][1];
?>

<br>
<?php 
echo smarty_function_mailto(array('address' => '*****@*****.**'), $this);
?>

<br>
Operation: <?php 
echo $this->_tpl_vars['raz'] * $this->_tpl_vars['dva'];
?>

<br>
Home phone: <?php 
echo $this->_tpl_vars['Contacts']['fax'];
?>

<br>
Time: <?php 
echo is_array($_tmp = $this->_tpl_vars['raz']) ? $this->_run_mod_handler('date_format', true, $_tmp, "%d.%m.%Y") : smarty_modifier_date_format($_tmp, "%d.%m.%Y");
示例#23
0
    foreach ($_from as $this->_tpl_vars['data']) {
        ?>
	<div class="topic_message">
		<div class="message_header">
			<h3>
			<?php 
        echo censor(array('text' => $this->_tpl_vars['data']['subject']), $this);
        ?>

			</h3>
			<span class="user_data"><?php 
        echo $this->_tpl_vars['data']['user_name'];
        if ($this->_tpl_vars['data']['user_email'] != "") {
            ?>
 &lt;<?php 
            echo smarty_function_mailto(array('address' => $this->_tpl_vars['data']['user_email']), $this);
            ?>
&gt;<?php 
        }
        ?>
</span>
			<span class="time"><?php 
        echo $this->_tpl_vars['data']['add_date'];
        ?>
</span>
		</div>
		<div class="message">
		<?php 
        echo get_bbcode(array('text' => $this->_tpl_vars['data']['message']), $this);
        ?>
    function content_5671748372d6c9_20218614($_smarty_tpl)
    {
        if (!is_callable('smarty_function_mailto')) {
            include '/home/activeciuk/www/bap/tools/smarty/plugins/function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<section id="block_contact_infos" class="footer-block block col-xs-12 col-sm-3">
	<div>
        <div class="title_block"><h4><?php 
        echo smartyTranslate(array('s' => 'Store Information', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4></div>
        <ul class="toggle-footer">
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
            	<li>
            		<i class="icon-map-marker"></i><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, ENT_QUOTES, 'UTF-8', true);
            if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
                ?>
, <?php 
                echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, ENT_QUOTES, 'UTF-8', true);
            }
            ?>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
            	<li>
            		<i class="icon-phone"></i><?php 
            echo smartyTranslate(array('s' => 'Call us now toll free:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
            	<li>
            		<i class="icon-envelope-alt"></i><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo smarty_function_mailto(array('address' => htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, ENT_QUOTES, 'UTF-8', true), 'encode' => "hex"), $_smarty_tpl);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
        </ul>
    </div>
</section>
<!-- /MODULE Block contact infos -->
<?php 
    }
    function content_55d3044cd3bea4_04608939($_smarty_tpl)
    {
        if (!is_callable('smarty_function_mailto')) {
            include '/Applications/MAMP/htdocs/prestashop/tools/smarty/plugins/function.mailto.php';
        }
        ?>

<!-- MODULE Block contact infos -->
<section id="block_contact_infos" class="footer-block col-xs-12 col-sm-4">
	<div>
        <h4><?php 
        echo smartyTranslate(array('s' => 'Store Information', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
        ?>
</h4>
        <ul class="toggle-footer">
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value != '') {
            ?>
            	<li>
            		<i class="icon-map-marker"></i><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_company']->value, ENT_QUOTES, 'UTF-8', true);
            if ($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value != '') {
                ?>
, <?php 
                echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_address']->value, ENT_QUOTES, 'UTF-8', true);
            }
            ?>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value != '') {
            ?>
            	<li>
            		<i class="icon-phone"></i><?php 
            echo smartyTranslate(array('s' => 'Call us now:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_phone']->value, ENT_QUOTES, 'UTF-8', true);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
            <?php 
        if ($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value != '') {
            ?>
            	<li>
            		<i class="icon-envelope-alt"></i><?php 
            echo smartyTranslate(array('s' => 'Email:', 'mod' => 'blockcontactinfos'), $_smarty_tpl);
            ?>
 
            		<span><?php 
            echo smarty_function_mailto(array('address' => htmlspecialchars($_smarty_tpl->tpl_vars['blockcontactinfos_email']->value, ENT_QUOTES, 'UTF-8', true), 'encode' => "hex"), $_smarty_tpl);
            ?>
</span>
            	</li>
            <?php 
        }
        ?>
        </ul>
    </div>
</section>
<!-- /MODULE Block contact infos -->
<?php 
    }

--------------------------------
<h3>html_select_date 使用</h3>
<?php 
echo smarty_function_html_select_date(array('start_year' => 2000, 'end_year' => 2019), $this);
?>


--------------------------------
<h3>html_select_time 使用</h3>
<?php 
echo smarty_function_html_select_time(array('use_24_hours' => false), $this);
?>




--------------------------------

<h3>mailto 使用  发邮件</h3>
<?php 
echo smarty_function_mailto(array('address' => "*****@*****.**", 'text' => "联系管理员", 'subject' => "hello,manager"), $this);
?>



---------------------------------