nst/craft-publisher

Publisher X enables you to publish saved Drafts on a future date without the need to handle the cache expiration logic. The cronjob handles the publication and the cache invalidation.

Maintainers

Package info

github.com/neustadt-swiss/craft-publisher

Type:craft-plugin

pkg:composer/nst/craft-publisher

Statistics

Installs: 743

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

5.2.0 2026-06-22 13:48 UTC

This package is auto-updated.

Last update: 2026-06-22 13:49:04 UTC


README

Publisher X enables you to publish saved Drafts on a future date. The cron job handles the publication, and cache invalidation is managed through Craft CMS's native element save events.

It also handles entries that are set to expire or go live in the future, and will trigger cache invalidation through Craft's standard element lifecycle events.

Screenshot

Requirements

  • Craft CMS 5.0+
  • PHP 8.2+

Installation

composer require nst/craft-publisher

Then install the plugin in the Craft control panel under Settings → Plugins.

Permissions

To publish a draft, the user needs the Save entries permission on the entry's section.

Setup

Create a cron job that runs every minute. You can invoke Publisher X via CLI or HTTP:

CLI (recommended):

* * * * * [PATH_TO_CRAFT]/craft publisher-x/publish

Web:

* * * * * /usr/bin/curl --silent --compressed {siteUrl}/actions/publisher-x/api/publish

Usage with cache plugins

If you use a full-page cache plugin such as Blitz, make sure you also run the queue and refresh expired caches:

* * * * * [PATH_TO_CRAFT]/craft blitz/cache/refresh-expired
* * * * * [PATH_TO_CRAFT]/craft queue/run

Events

EVENT_AFTER_PUBLISH_ENTRY

Fired by the Entries service after each successful scheduled publication. Use it to trigger server-side cache purges or any other side-effect tied to publication.

Event::on(
    Entries::class,
    Entries::EVENT_AFTER_PUBLISH_ENTRY,
    function (EntryPublishedEvent $event) {
        $entry = $event->entry;        // canonical entry that was published
        $draft = $event->draft;        // draft that was applied, or null for non-draft schedules
        $schedule = $event->entryPublish; // the EntryPublish schedule record

        // trigger your cache purge here
    }
);

The event is only fired when publication succeeds. If the scheduled entry or draft cannot be found (e.g. the entry was deleted), the orphaned record is cleaned up and the event is not fired.