Вход Регистрация
Файл: vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HidesAttributes.php
Строк: 150
<?php

namespace IlluminateDatabaseEloquentConcerns;

use 
IlluminateDatabaseEloquentAttributesHidden;
use 
IlluminateDatabaseEloquentAttributesInitialize;
use 
IlluminateDatabaseEloquentAttributesVisible;

trait 
HidesAttributes
{
    
/**
     * The attributes that should be hidden for serialization.
     *
     * @var array<string>
     */
    
protected $hidden = [];

    
/**
     * The attributes that should be visible in serialization.
     *
     * @var array<string>
     */
    
protected $visible = [];

    
/**
     * Initialize the HidesAttributes trait.
     *
     * @return void
     */
    #[Initialize]
    
public function initializeHidesAttributes()
    {
        
$this->mergeHidden(static::resolveClassAttribute(Hidden::class, 'columns') ?? []);
        
$this->mergeVisible(static::resolveClassAttribute(Visible::class, 'columns') ?? []);
    }

    
/**
     * Get the hidden attributes for the model.
     *
     * @return array<string>
     */
    
public function getHidden()
    {
        return 
$this->hidden;
    }

    
/**
     * Set the hidden attributes for the model.
     *
     * @param  array<string>  $hidden
     * @return $this
     */
    
public function setHidden(array $hidden)
    {
        
$this->hidden $hidden;

        return 
$this;
    }

    
/**
     * Merge new hidden attributes with existing hidden attributes on the model.
     *
     * @param  array<string>  $hidden
     * @return $this
     */
    
public function mergeHidden(array $hidden)
    {
        if (
$hidden === []) {
            return 
$this;
        }

        
$this->hidden array_values(array_unique(array_merge($this->hidden$hidden)));

        return 
$this;
    }

    
/**
     * Get the visible attributes for the model.
     *
     * @return array<string>
     */
    
public function getVisible()
    {
        return 
$this->visible;
    }

    
/**
     * Set the visible attributes for the model.
     *
     * @param  array<string>  $visible
     * @return $this
     */
    
public function setVisible(array $visible)
    {
        
$this->visible $visible;

        return 
$this;
    }

    
/**
     * Merge new visible attributes with existing visible attributes on the model.
     *
     * @param  array<string>  $visible
     * @return $this
     */
    
public function mergeVisible(array $visible)
    {
        if (
$visible === []) {
            return 
$this;
        }

        
$this->visible array_values(array_unique(array_merge($this->visible$visible)));

        return 
$this;
    }

    
/**
     * Make the given, typically hidden, attributes visible.
     *
     * @param  array<string>|string|null  $attributes
     * @return $this
     */
    
public function makeVisible($attributes)
    {
        
$attributes is_array($attributes) ? $attributes func_get_args();

        
$this->hidden array_diff($this->hidden$attributes);

        if (! empty(
$this->visible)) {
            
$this->visible array_values(array_unique(array_merge($this->visible$attributes)));
        }

        return 
$this;
    }

    
/**
     * Make the given, typically hidden, attributes visible if the given truth test passes.
     *
     * @param  bool|Closure  $condition
     * @param  array<string>|string|null  $attributes
     * @return $this
     */
    
public function makeVisibleIf($condition$attributes)
    {
        return 
value($condition$this) ? $this->makeVisible($attributes) : $this;
    }

    
/**
     * Make the given, typically visible, attributes hidden.
     *
     * @param  array<string>|string|null  $attributes
     * @return $this
     */
    
public function makeHidden($attributes)
    {
        
$this->hidden array_values(array_unique(array_merge(
            
$this->hiddenis_array($attributes) ? $attributes func_get_args()
        )));

        return 
$this;
    }

    
/**
     * Make the given, typically visible, attributes hidden if the given truth test passes.
     *
     * @param  bool|Closure  $condition
     * @param  array<string>|string|null  $attributes
     * @return $this
     */
    
public function makeHiddenIf($condition$attributes)
    {
        return 
value($condition$this) ? $this->makeHidden($attributes) : $this;
    }
}
Онлайн: 2
Реклама