The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Statocles::App::Role::Store - Role for applications using files

VERSION

version 0.056

SYNOPSIS

    package MyApp;
    use Statocles::Base 'Class';
    with 'Statocles::App::Role::Store';

    around pages => sub {
        my ( $orig, $self, %options ) = @_;
        my @pages = $self->$orig( %options );

        # ... Add/remove pages

        return @pages;
    };

DESCRIPTION

This role provides some basic functionality for those applications that want to use store objects to manage content with Markdown files.

ATTRIBUTES

store

The directory path or store object containing this app's documents. Required.

METHODS

pages

    my @pages = $app->pages;

Get all the pages for this application. Markdown documents are wrapped in Statocles::Page::Document objects, and everything else is wrapped in Statocles::Page::File objects.

AUTHOR

Doug Bell <preaction@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Doug Bell.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.