Inpsyde\MultilingualPress\Core\InternalLocations::has PHP 메소드

has() 공개 메소드

Checks if a location with the given name exists.
부터: 3.0.0
public has ( string $name ) : boolean
$name string Location name.
리턴 boolean Whether or not a location with the given name exists.
    public function has($name)
    {
        return array_key_exists($name, $this->locations);
    }
InternalLocations