Habari\User::get_url_args PHP Method

get_url_args() public method

Returns a set of properties used by URL::get to create URLs
public get_url_args ( ) : array
return array Properties of this post used to build a URL
    public function get_url_args()
    {
        if (!$this->url_args) {
            $this->url_args = array_merge(URL::extract_args($this->info, 'info_'), $this->to_array());
        }
        return $this->url_args;
    }