Inpsyde\MultilingualPress\Core\InternalLocations::get PHP Method

get() public method

Returns the location data according to the given arguments.
public get ( string $name, string $type ) : string
$name string Location name.
$type string Location type.
return string Location data.
    public function get($name, $type)
    {
        return empty($this->locations[$name][$type]) ? '' : $this->locations[$name][$type];
    }
InternalLocations