putyourlightson/craft-spark-module

This package is abandoned and no longer maintained. The author suggests using the putyourlightson/craft-datastar-module package instead.

A real-time, template-driven hypermedia framework for Craft.

Maintainers

👁 putyourlightson

Package info

github.com/putyourlightson/craft-spark-module

Documentation

Language:JavaScript

Type:yii-module

pkg:composer/putyourlightson/craft-spark-module

Fund package maintenance!

bencroker

Statistics

Installs: 37

Dependents: 1

Suggesters: 0

Stars: 3

Open Issues: 0

1.0.0-alpha.4 2024-11-05 19:18 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

mit ed38d3d0b70abab3daa956aaf44b4b360eb34b97

This package is auto-updated.

Last update: 2024-12-12 13:16:36 UTC


README

👁 Stable Version
👁 Total Downloads

👁 Image

Spark Module for Craft CMS

This module provides the core functionality for the Spark plugin, a real-time, template-driven hypermedia framework for Craft CMS. If you are developing a Craft plugin/module and would like to use Spark in the control panel, you can require this package to give you its functionality, without requiring that the Spark plugin is installed.

First require the package in your plugin/module’s composer.json file.

{
 "require": {
 "putyourlightson/craft-spark-module": "^1.0.0-alpha.1"
 }
}

Then bootstrap the module from within your plugin/module’s init method.

use craft\base\Plugin;
use putyourlightson\spark\Spark;

class MyPlugin extends Plugin
{
 public function init()
 {
 parent::init();

 Spark::bootstrap();
 }
}

Then use the Spark function and tags as normal in your control panel templates.

<button data-on-click="{{ spark('_spark/search') }}">Search</button>

Spark plugin issues should be reported to https://github.com/putyourlightson/craft-spark/issues

The Spark plugin changelog is at https://github.com/putyourlightson/craft-spark/blob/develop/CHANGELOG.md

Documentation

Learn more and read the documentation at putyourlightson.com/plugins/spark »

License

This plugin is licensed for free under the MIT License.

Requirements

This plugin requires Craft CMS 5.0.0 or later.

Installation

Install this package via composer.

composer require putyourlightson/craft-spark-module:^1.0.0-alpha.1

Created by PutYourLightsOn.