burnbright/silverstripe-anchorfield

Form field for creating anchor links easily. Beats using LiteralField.

Installs: 2 338

Dependents: 1

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 2

Open Issues: 4

Type:silverstripe-module

dev-master 2014-11-28 01:39 UTC

This package is auto-updated.

Last update: 2024-03-24 18:23:52 UTC


README

Create anchor easily within form fields or actions lists.

The AnchorField.ss template can be overridden for easy styling / customisation, which is particularly useful for making links look like buttons.

Example Usage

    $actions = new FieldList(
        new AnchorField("cancel", "Cancel", $this->Link()),
        new FormAction("submit", "Submit")
    );