| Server IP : 54.94.228.101 / Your IP : 172.28.20.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 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, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/vinumday2_0/vendor/darryldecode/cart/src/Darryldecode/Cart/ |
Upload File : |
<?php namespace Darryldecode\Cart;
/**
* Created by PhpStorm.
* User: darryl
* Date: 1/17/2015
* Time: 11:03 AM
*/
use Darryldecode\Cart\Helpers\Helpers;
use Illuminate\Support\Collection;
class ItemCollection extends Collection {
/**
* Sets the config parameters.
*
* @var
*/
protected $config;
/**
* ItemCollection constructor.
* @param array|mixed $items
* @param $config
*/
public function __construct($items, $config)
{
parent::__construct($items);
$this->config = $config;
}
/**
* get the sum of price
*
* @return mixed|null
*/
public function getPriceSum()
{
return Helpers::formatValue($this->price * $this->quantity, $this->config['format_numbers'], $this->config);
}
public function __get($name)
{
if( $this->has($name) ) return $this->get($name);
return null;
}
/**
* check if item has conditions
*
* @return bool
*/
public function hasConditions()
{
if( ! isset($this['conditions']) ) return false;
if( is_array($this['conditions']) )
{
return count($this['conditions']) > 0;
}
$conditionInstance = "Darryldecode\\Cart\\CartCondition";
if( $this['conditions'] instanceof $conditionInstance ) return true;
return false;
}
/**
* check if item has conditions
*
* @return mixed|null
*/
public function getConditions()
{
if(! $this->hasConditions() ) return [];
return $this['conditions'];
}
/**
* get the single price in which conditions are already applied
* @param bool $formatted
* @return mixed|null
*/
public function getPriceWithConditions($formatted = true)
{
$originalPrice = $this->price;
$newPrice = 0.00;
$processed = 0;
if( $this->hasConditions() )
{
if( is_array($this->conditions) )
{
foreach($this->conditions as $condition)
{
if( $condition->getTarget() === 'item' )
{
( $processed > 0 ) ? $toBeCalculated = $newPrice : $toBeCalculated = $originalPrice;
$newPrice = $condition->applyCondition($toBeCalculated);
$processed++;
}
}
}
else
{
if( $this['conditions']->getTarget() === 'item' )
{
$newPrice = $this['conditions']->applyCondition($originalPrice);
}
}
return Helpers::formatValue($newPrice, $formatted, $this->config);
}
return Helpers::formatValue($originalPrice, $formatted, $this->config);
}
/**
* get the sum of price in which conditions are already applied
* @param bool $formatted
* @return mixed|null
*/
public function getPriceSumWithConditions($formatted = true)
{
return Helpers::formatValue($this->getPriceWithConditions(false) * $this->quantity, $formatted, $this->config);
}
}