Method: Scrivito::Link.parse
- Defined in:
- app/cms/scrivito/link.rb
permalink .parse(url, host, port) ⇒ Object
Parses a URL and returns a Scrivito::Link object. Determines internal URLs based on the given hostname
and port
.
18 19 20 |
# File 'app/cms/scrivito/link.rb', line 18 def self.parse(url, host, port) LinkParser.new(host, port).parse(url) end |