Method: Scrivito::Link.parse

Defined in:
app/cms/scrivito/link.rb

.parse(url, host, port) ⇒ Object

Parses a URL and returns a Scrivito::Link object. Determines internal URLs based on the given hostname and port.

Parameters:

  • url (String)
  • host (String)

    the hostname of internal urls

  • port (String)

    the port of internal urls

[View source]

18
19
20
# File 'app/cms/scrivito/link.rb', line 18

def self.parse(url, host, port)
  LinkParser.new(host, port).parse(url)
end