AnonSec Shell
Server IP : 54.36.91.62  /  Your IP : 216.73.217.112
Web Server : Apache
System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : coopiak ( 151928)
PHP Version : 8.3.23
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/coopiak/amisdesseniors-fr/nice/components/com_djcatalog2/layouts/com_djcatalog2/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/coopiak/amisdesseniors-fr/nice/components/com_djcatalog2/layouts/com_djcatalog2//quantity.php
<?php
/**
 * @package DJ-Catalog2
 * @copyright Copyright (C) DJ-Extensions.com, All rights reserved.
 * @license http://www.gnu.org/licenses GNU/GPL
 * @author url: http://dj-extensions.com
 * @author email contact@dj-extensions.com
 */

defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Language\Text;

$unit = $displayData['unit'];
$item = $displayData['item'];
$options = $displayData['options'];

$name = (isset($options['name'])) ? $options['name'] : 'quantity';
$class = (isset($options['class'])) ? $options['class'].' djc_qty_input' : 'djc_qty_input input input-mini';
$readonly = (bool)(!empty($options['readonly']));
$disabled = (bool)(!empty($options['disabled']));
$value = (isset($options['value'])) ? $options['value'] : null;

$allowEmpty = (bool)(isset($options['allow_empty']) ? $options['allow_empty'] : false);
if (!$allowEmpty) {
	$value = ($value && $value >= $unit->min_quantity) ? $value : $unit->min_quantity;
} else {
	$unit->min_quantity = 0;
}

if ($value !== null) {
	$value = ($unit->is_int) ? intval($value) : (floatval($value) + 0);
}

// reducing number of zeroes after dec point
$precision = 0;
if (!$unit->is_int) {
	$min = abs(min($unit->min_quantity, $unit->step));
	/*if ($min <= 1) {
		$tempMin = abs($min);
		while ( $tempMin < 1 && $precision < 4 ) {
			$tempMin *= 10;
			$tempMin += (int)$tempMin;
			$precision++;
		}
	} else {*/
	$tempMin = abs($min);
	$tempMin -= (int)$min;
	while ( $tempMin > 0 && $precision < 4 ) {
		$tempMin *= 10;
		$tempMin -= (int)$tempMin;
		$precision++;
	}
	/*}*/
}

$size = (isset($options['size'])) ? (int)$options['size'] : false;
if (!$size) {
	$maxLen = 3;
	if ($unit->max_quantity >= 100) {
		$base = $unit->max_quantity;
		while($base > 99) {
			$maxLen++;
			$base /= 10;
		}
	} else if ($unit->max_quantity < 10 && $unit->max_quantity > 0) {
		$maxLen = 1;
	}
	if ($precision > 0) {
		$maxLen += ($precision + 1);
	}
	$size = $maxLen;
}

$attrs = ' data-type="'.($unit->is_int ? 'int' : 'flo').'"';
$attrs .= ' data-min="'.($unit->is_int ? intval($unit->min_quantity) : floatval($unit->min_quantity)).'"';
$attrs .= ' data-max="'.($unit->is_int ? intval($unit->max_quantity) : floatval($unit->max_quantity)).'"';
$attrs .= ' data-step="'.($unit->is_int ? $unit->step : ($unit->step + 0)).'"';
$attrs .= ' data-precision="'.$precision.'"';
$attrs .= ' data-unit="'.htmlspecialchars($unit->unit, ENT_COMPAT, 'UTF-8').'"';

if ($size) {
	$attrs .= ' size="'.$size.'" maxLength="'.$size.'"';
}
if ($allowEmpty) {
	$attrs .= ' data-allowempty="1" ';
}
if (!empty($options['attributes'])) {
	$attrs .= ' '.$options['attributes'];
}
if ($readonly) {
	$class .= ' readonly';
	$attrs .= ' readonly="readonly"';
}
if ($disabled) {
	$class .= ' disabled';
	$attrs .= ' disabled="disabled"';
}

// Bootstrap markup
$displayUnit = (isset($options['show_unit'])) ? (bool)$options['show_unit'] : $unit->show_unit;
$displayBtns = (isset($options['show_buttons'])) ? (bool)$options['show_buttons'] : $unit->show_buttons;
if ($disabled) {
	$displayBtns = false;
}
$displayBox = (isset($options['show_box'])) ? $options['show_box'] : $unit->show_box;
$cartBtn = '';

if (!empty($options['cart_button']) && is_array($options['cart_button'])) {
	$btnValue = isset($options['cart_button']['value']) ? $options['cart_button']['value'] : Text::_('COM_DJCATALOG2_ADD_TO_CART');
	$btnType = isset($options['cart_button']['type']) ? $options['cart_button']['type'] : 'input';
	$btnClass = isset($options['cart_button']['class']) ? $options['cart_button']['class'] : 'btn';
	$btnAttrs = isset($options['cart_button']['attributes']) ? $options['cart_button']['attributes'] : '';

	if ($btnType == 'input') {
		$cartBtn = '<input type="submit" value="'.$btnValue.'" class="'.$btnClass.'" '.trim((string)$btnAttrs).' tabindex="0" />';
	} else if ($btnType == 'button') {
		$cartBtn = '<button type="submit" class="'.$btnClass.'" '.trim((string)$btnAttrs).' tabindex="0" >'.$btnValue.'</button>';
	}
}

if (!empty($options['update_button'])) {
	$cartBtn .= $options['update_button'];
}

if (!empty($options['remove_button'])) {
	$cartBtn .= $options['remove_button'];
}

?>

<?php if ($displayBox) { ?>
    <div class="btn-group djc_qty_buttons djc_qty " aria-live="polite">

		<?php if ($displayBtns) { ?>
            <span data-toggle="dec" class="btn btn-primary djc_qty_btn djc_qty_dec" tabindex="0" aria-label="<?php echo Text::sprintf('COM_DJCATALOG2_DECREASE_QTY', (float)$unit->step);?>" title="<?php echo Text::sprintf('COM_DJCATALOG2_DECREASE_QTY', (float)$unit->step);?>">&minus;</span>
		<?php } ?>

        <input aria-label="Quantity value" type="text" name="<?php echo $name; ?>" class="<?php echo $class; ?>" value="<?php echo $value; ?>" <?php echo trim((string)$attrs); ?> />

		<?php if ($displayUnit) { ?>
            <span class="add-on"><?php echo $unit->unit; ?></span>
		<?php } ?>

		<?php if ($displayBtns) { ?>
            <span data-toggle="inc" class="btn btn-primary djc_qty_btn djc_qty_inc" tabindex="0" aria-label="<?php echo Text::sprintf('COM_DJCATALOG2_INCREASE_QTY', (float)$unit->step);?>" title="<?php echo Text::sprintf('COM_DJCATALOG2_INCREASE_QTY', (float)$unit->step);?>">&#43;</span>
		<?php } ?>

		<?php echo $cartBtn; ?>

    </div>

<?php } else { ?>
	<?php echo $cartBtn; ?>
    <input type="hidden" name="<?php echo $name; ?>" value="<?php echo $value; ?>"/>
<?php }



Anon7 - 2022
AnonSec Team