Allow multiple items to be passed to Session::has.
This commit is contained in:
parent
f48d76abca
commit
2ef32608f2
|
@ -68,16 +68,24 @@ public static function load()
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine if the session or flash data contains an item.
|
* Determine if the session or flash data contains an item or set of items.
|
||||||
*
|
*
|
||||||
* @param string $key
|
* @param string $key
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public static function has($key)
|
public static function has($key)
|
||||||
{
|
{
|
||||||
return array_key_exists($key, static::$session['data']) or
|
foreach (func_get_args() as $key)
|
||||||
array_key_exists(':old:'.$key, static::$session['data']) or
|
{
|
||||||
array_key_exists(':new:'.$key, static::$session['data']);
|
if ( ! array_key_exists($key, static::$session['data']) and
|
||||||
|
! array_key_exists(':old:'.$key, static::$session['data']) and
|
||||||
|
! array_key_exists(':new:'.$key, static::$session['data']))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue