roelofjan-elsinga/flat-file-cms-publish

This package is abandoned and no longer maintained. The author suggests using the roelofjan-elsinga/aloia-cms-publish package instead.

A publishing plugin for roelofjan-elsinga/aloia-cms.

1.0.0 2020-02-19 12:23 UTC

This package is auto-updated.

Last update: 2020-02-19 12:28:14 UTC


README

Build status StyleCI Status Code coverage Total Downloads Latest Stable Version License

This is a self publishing module for Flat File CMS.

Installation

You can include this package through Composer using:

composer require roelofjan-elsinga/flat-file-cms-publish

and if you want to customize the folder structure, then publish the configuration through:

php artisan vendor:publish --provider="AloiaCms\\Publish\\ServiceProvider"

Overwriting the sitemap command

You can overwrite the sitemap command, as this only adds support for articles and pages by default. To do this, you'll need to make your own implementation of the command and register this in a service provider like so:

namespace App\Console\Commands;

use SitemapGenerator\SitemapGenerator;

class SitemapCreator extends \AloiaCms\Publish\Console\SitemapCreator
{

    /**
     * Overwrite the base implementation and add additional URL's
     *
     * @param SitemapGenerator $generator
     */
    protected function appendAdditionalUrls(SitemapGenerator $generator): void
    {
        foreach($this->getArrayOfOtherUrlsToAdd() as $url) {
            $generator->add($url, 0.8, $this->lastmod, 'monthly');
        }
    }

    /**
     * Get the urls of the portfolio items
     *
     * @return array
     */
    private function getArrayOfOtherUrlsToAdd(): array
    {
        return [
            '/contact',
            '/services',
            '/any-other-urls-you-wish'
        ];
    }

}

and register this new command in the AppServiceProvider:

public function register()
{
    $this->app->bind(\AloiaCms\Publish\Console\SitemapCreator::class, function () {
        return new \App\Console\Commands\SitemapCreator();
    });
}

You can now add any custom urls to the sitemap.

Testing

You can run the included tests by running ./vendor/bin/phpunit in your terminal.