Coder Social home page Coder Social logo

cheddam / silverstripe-autotoc Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ntd/silverstripe-autotoc

0.0 2.0 0.0 30 KB

Dynamically generates the table of contents

Home Page: http://silverstripe.entidi.com/

License: BSD 2-Clause "Simplified" License

PHP 97.64% Scheme 2.36%

silverstripe-autotoc's Introduction

silverstripe-autotoc

Build Status Latest Stable Version

Generate the table of contents dynamically from $Content or from any HTML field specified in the content_field YAML property of a controller.

This is basically a SilverStripe 3 module that extends the controller (if the cms is present, by default ContentController is extended) to provide:

  • the new $Autotoc tag, containing the table of contents dynamically created from the content of the current page. The tree is provided as a mixture of ArrayData and ArrayList, ready to be consumed by templates.
  • overriding of the specified field (default to $Content), augmenting it with anchors (<a> elements with the id attribute but without href) that adds proper destinations to the links in $Autotoc.

Installation

To install silverstripe-autotoc you should proceed as usual: unpack or copy the directory tree inside your SilverStripe root directory and do a ?flush.

If you use composer, you could just use the following command instead:

composer require entidi/silverstripe-autotoc

Usage

Modify your templates to include the newly introduced $Autotoc tag (see the next section for the gory details) or directly include the default template, e.g.:

<% include Autotoc %>

If you want to use a field different from Content, set the desired name in the content_field property of a YAML config file, e.g.:

ContentController:
    content_field: 'Content' # Bogus: this is the default
ProductPage_Controller:
    content_field: 'Details'
AuthorHandler:
    content_field: 'Biography'

Autotoc format

The $Autotoc is a tree that can be represented with the following pseudo representation:

$Autotoc = ArrayData( $Children <- <CHILDREN> )
<CHILDREN> = ArrayList( <ITEM> )
<ITEM> = ArrayData( $Id, $Title [, $Children <- <CHILDREN> ] )

In a more SilverStripe template way, this can be seen as:

$Autotoc
    $Children[]
        $Id
        $Title
        $Children[]

The Autotoc.ss and AutotocItem.ss show a way to represent the whole table of content tree in a recursive way. The format used is intentionally compatible with the Bootstrap navlist components, so it can be used and it will be properly handled by the Silverstrap theme.

Support

This project has been developed by ntd. Its home page is shared by other SilverStripe modules and themes.

To check out the code, report issues or propose enhancements, go to the dedicated tracker. Alternatively, you can do the same things by leveraging the official github repository.

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.