deptinternalaffairsnz/silverstripe-navigation-scraper

There is no license information available for the latest version (1.0.1) of this package.

1.0.1 2015-12-14 21:06 UTC

This package is not auto-updated.

Last update: 2024-03-16 15:30:13 UTC


README

A module for SilverStripe that allows you to scrape navigation from another site and use it as navigation on your own site.

Installation

Install with composer:

composer require 'deptinternalaffairsnz/silverstripe-navigation-scraper' '1.0.1'

Usage

Configuration

In your own config file (e.g. mysite/_config/config.yml) define the menu sets, URLs to scrape, and CSS selectors to target.

NavigationScraper:
  MenuSets:
	ScrapedFooter:
	  PageToScrape: 'https://www.example.com'
	  CSSSelector: '.footer-nav li a'
	ScrapedMainNav:
	  PageToScrape: 'https://www.example.com'
	  CSSSelector: '.header-nav li a'

Trigger a scrape

There are two options to trigger a scrape.

  1. Run the build task dev/tasks/TriggerScrapeBuildTask
  2. Install the cron task module - assuming you've configured a cron job appropriately a scrape will be run daily at 1am by default.

Templates

Use the $ScrapedMenu function in your templates, like so:

<ul>
	<% loop $ScrapedMenu("ScrapedFooter") %>
		<li><a href="$Link">$Title</a></li>
	<% end_loop %>
</ul>