whoami7 - Manager
:
/
home
/
dataiclx
/
vielorbe.com
/
wp-content
/
plugins
/
surecart
/
core
/
core
/
src
/
View
/
Upload File:
files >> //home/dataiclx/vielorbe.com/wp-content/plugins/surecart/core/core/src/View/HasContextTrait.php
<?php /** * @package SureCartCore * @author SureCart <support@surecart.com> * @copyright 2017-2019 SureCart * @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0 * @link https://surecart.com/ */ namespace SureCartCore\View; use SureCartCore\Support\Arr; trait HasContextTrait { /** * Context. * * @var array */ protected $context = []; /** * Get context values. * * @param string|null $key * @param mixed|null $default * @return mixed */ public function getContext( $key = null, $default = null ) { if ( $key === null ) { return $this->context; } return Arr::get( $this->context, $key, $default ); } /** * Add context values. * * @param string|array<string, mixed> $key * @param mixed $value * @return static $this */ public function with( $key, $value = null ) { if ( is_array( $key ) ) { $this->context = array_merge( $this->getContext(), $key ); } else { $this->context[ $key ] = $value; } return $this; } }
Copyright ©2021 || Defacer Indonesia