PHP Classes

File: modules/system/assets/js/snowboard/abstracts/Singleton.js

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/assets/js/snowboard/abstracts/Singleton.js   Download  
File: modules/system/assets/js/snowboard/abstracts/Singleton.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 8 months ago
Size: 491 bytes
 

Contents

Class file image Download
import PluginBase from './PluginBase'; /** * Singleton plugin abstract. * * This is a special definition class that the Snowboard framework will use to interpret the current plugin as a * "singleton". This will ensure that only one instance of the plugin class is used across the board. * * Singletons are initialised on the "domReady" event by default. * * @copyright 2021 Winter. * @author Ben Thomson <git@alfreido.com> */ export default class Singleton extends PluginBase { }