2017 © Pedro Peláez
 

silverstripe-module silverstripe-softscheduler

Adds a very simple way to schedule (Embargo/Expire) SiteTree items

image

micschk/silverstripe-softscheduler

Adds a very simple way to schedule (Embargo/Expire) SiteTree items

  • Wednesday, May 18, 2016
  • by micschk
  • Repository
  • 1 Watchers
  • 4 Stars
  • 86 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 1 % Grown

The README.md

SoftScheduler

non-cron Embargo & Expiry Module

This module allows you to specify when a page should become available (embargo) and when it should expire. It's called 'softscheduler' because it doesn't take care of publishing or unpublishing pages. Instead it checks if a published page should be available according to its set embargo/expire dates., (*1)

  • Someone that is logged in as an admin will always be able to see the page.
  • Setting both values as blank will mean the page is always visible.
  • If the embargo time and/or date are blank, the page will be displayed until it expires.
  • If the expiry time and/or date are blank, the page will be displayed once it embargos, and wont expire.

Screenshots

Schedule pages to become available/expire on certain dates & times , (*2)

Installation

composer require micschk/silverstripe-softscheduler dev-master

Apply as Extension to pagetypes requiring scheduling (eg. NewsItems), (*3)

---
name: 'schedulerextension'
---
NewsGridPage:
  extensions:
    - 'EmbargoExpirySchedulerExtension'

Usage Overview

This doesn't work with staticpublisher and requires extra check to work well with partialcaching, (*4)

Check for use in partialcaching: $publishedStatus, (*5)

Convenience function is supplied to add extra 'where' for DB queries (TODO: apply via augmentSQL, see for example), (*6)

// workaround for Embargo/Expiry (augmentSQL for embargo/expiry is not working yet);
if( $class::has_extension("EmbargoExpirySchedulerExtension") ){
    $items = $items->where( EmbargoExpirySchedulerExtension::extraWhereQuery($class) );
}

Requirements

SilverStripe 3.0+, (*7)

The Versions

18/05 2016

dev-master

9999999-dev

Adds a very simple way to schedule (Embargo/Expire) SiteTree items

  Sources   Download

The Requires

 

by Avatar micschk

silverstripe schedule sitetree expiry embargo

18/05 2016

1.0

1.0.0.0

Adds a very simple way to schedule (Embargo/Expire) SiteTree items

  Sources   Download

The Requires

 

by Avatar micschk

silverstripe schedule sitetree expiry embargo