| Current Path : /home/lejardintz/www/components/com_komento/themes/kuro/comment/form/ |
| Current File : /home/lejardintz/www/components/com_komento/themes/kuro/comment/form/length.php |
<?php
/**
* @package Komento
* @copyright Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved.
* @license GNU/GPL, see LICENSE.php
*
* Komento is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<div class="commentLength kmt-form-length kmt-has-tip">
<b><span class="commentLengthCount">0</span>
<?php if( $system->config->get( 'antispam_max_length_enable' ) == 1 && $system->config->get( 'antispam_max_length' ) > 0 && ( ( $system->config->get( 'antispam_min_length_enable' ) && $system->config->get( 'antispam_max_length' ) > $system->config->get( 'antispam_min_length' ) ) || !$system->config->get( 'antispam_min_length_enable' ) ) ) { ?>
<span class="commentMaxCount">/ <?php echo $system->config->get( 'antispam_max_length' ); ?></span>
<?php } ?>
</b>
<?php if( $system->config->get( 'antispam_min_length_enable' ) || $system->config->get( 'antispam_max_length_enable' ) ) { ?>
<span class="kmt-tip">
<i></i>
<span>
<b><?php echo JText::_( 'COM_KOMENTO_FORM_CHARACTER_RESTRICTION' ); ?></b>
<?php if( $system->config->get( 'antispam_min_length_enable' ) && $system->config->get( 'antispam_max_length_enable' ) ) { ?>
<div><?php echo JText::sprintf( 'COM_KOMENTO_FORM_CHARACTER_BETWEEN', $system->config->get( 'antispam_min_length' ), $system->config->get( 'antispam_max_length' ) ); ?></div>
<?php } else {
if( $system->config->get( 'antispam_min_length_enable' ) ) { ?>
<div><?php echo JText::sprintf( 'COM_KOMENTO_FORM_CHARACTER_MIN', $system->config->get( 'antispam_min_length' ) ); ?></div>
<?php }
if( $system->config->get( 'antispam_max_length_enable' ) ) { ?>
<div><?php echo JText::sprintf( 'COM_KOMENTO_FORM_CHARACTER_MAX', $system->config->get( 'antispam_max_length' ) ); ?></div>
<?php }
} ?>
</span>
</span>
<?php } ?>
</div>