| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace Dcat\Admin\Support;
- use Illuminate\Support\Arr;
- use Illuminate\Support\Fluent;
- /**
- * Class Context.
- *
- * @property string $favicon
- * @property string $metaTitle
- * @property string $pjaxContainerId
- * @property array|null $html
- * @property array|null $ignoreQueries
- * @property array|null $jsVariables
- */
- class Context extends Fluent
- {
- public function set($key, $value = null)
- {
- $data = is_array($key) ? $key : [$key => $value];
- foreach ($data as $key => $value) {
- Arr::set($this->attributes, $key, $value);
- }
- return $this;
- }
- public function get($key, $default = null)
- {
- return Arr::get($this->attributes, $key, $default);
- }
- public function getArray($key, $default = null)
- {
- return Helper::array($this->get($key, $default));
- }
- public function add($key, $value, $k = null)
- {
- $results = $this->getArray($key);
- if ($k !== null) {
- $results[] = $value;
- } else {
- $results[$k] = $value;
- }
- return $this->set($key, $results);
- }
- public function addMany($key, array $value)
- {
- $results = $this->getArray($key);
- return $this->set($key, array_merge($results, $value));
- }
- public function forget($keys)
- {
- Arr::forget($this->attributes, $keys);
- }
- public function flush()
- {
- $this->attributes = [];
- }
- }
|