Coder Social home page Coder Social logo

helpfulrobot / tractorcow-silverstripe-datelink Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tractorcow/silverstripe-datelink

0.0 2.0 0.0 28 KB

Allows you to add wordpress style year/month URLs to time-sensitive sections of your website

PHP 99.57% Scheme 0.43%

tractorcow-silverstripe-datelink's Introduction

datelink module for Silverstripe

This module allows you to create dated urls, that is, links that have the year and month preceeding the url segment.

This is useful if you want your blog posts, or other date-specific sections of the website, to indicate when they were posted. This follows the same style as wordpress, and other blog applications.

For instance, if you had a blog with urls like

http://www.mysite.com/blog/heres-an-awesome-post

You could turn these links into:

http://www.mysite.com/blog/2012/2/heres-an-awesome-post

Dated style urls can only be applied to subpages, grouped under common holder pages of a list of specified types.

Credits and Authors

Requirements

  • SilverStripe 3.1

Installation Instructions

  • Extract all files into the 'datelink' folder under your Silverstripe root, or install using composer
composer require "tractorcow/silverstripe-datelink": "3.1.*@dev"
  • Ensure that the assets folder is properly writable. This module will save an xml file under assets/_datelink and will need write permissions
  • Configure the page options. See the Configuration section.
  • Run dev/build in order to generate and cache routes.

The reason for using a cached XML file for storing routing patterns is that database access is not available before routes are initialised. All required parent pages and years are extracted during dev/build to create distinct patterns that silverstripe can use during routing, to prevent clashes between it and the default page routing. These routes are then simply read from the XML file and set in the routing table each page load.

Configuration

See DateLink.yml for the basic configuration options.

Class Filter Configuration

To setup date customised links you should configure the class names of each child and parent relations. The only mandatory property to set is the DateLink.holder_classes config property to specify the parent classes of all dated urls.

DateLink:
  holder_classes:
    - 'BlogHolder'

By default all children of the specified classes will have dated urls applied to them. In order to further filter out these classes an additional filter may be applied, the DateLink.child_classes config property.

For example, to filter only 'BlogEntry' pages:

DateLink:
  child_classes:
    - 'BlogEntry'

URL Configuration

You can customise the URL layout using constants, year, month (name/number), day of the month, and even day of the week using the configuration property DateLink.url_pattern

DateLink:
  url_pattern: '$ParentLink!/$Year!/$Month!/$URLSegment!//$Action/$ID/$OtherID'

The following pattern placeholders can be used here:

  • $ParentLink! - The parent page URL (mandatory)
  • $URLSegment! - The URLSegment of the current page (mandatory)
  • $Year! - Year (mandatory)
  • $Month! - Month number
  • #$Month! - Month number (leading zeros)
  • $MonthName! - Month name (full name)
  • $Date! - Day of month
  • #$Date! - Day of month (leading zeros)
  • $Weekday! - Day of the week (full name)

All wildcards prior to the '//' must be qualified with a trailing '!'

Date Configuration

The field which holds the date for each page can be customised by one of two ways:

  • The DateLink.default_date_field config option will set the default field. By default this is 'Created'
  • Override the getRouteDate function in your Page class to return the date value that should be used for that page.

License

Copyright (c) 2013, Damian Mooyman All rights reserved.

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • The name of Damian Mooyman may not be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

tractorcow-silverstripe-datelink's People

Contributors

tractorcow avatar

Watchers

James Cloos avatar helpfulrobot avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.