PHP Classes

File: modules/system/tests/js/fixtures/framework/TestHasDependencies.js

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/tests/js/fixtures/framework/TestHasDependencies.js   Download  
File: modules/system/tests/js/fixtures/framework/TestHasDependencies.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 7 months ago
Size: 359 bytes
 

Contents

Class file image Download
/* globals window */ ((Snowboard) => { class TestHasDependencies extends Snowboard.Singleton { dependencies() { return ['testDependencyOne', 'testDependencyTwo']; } testMethod() { return 'Tested'; } } Snowboard.addPlugin('testHasDependencies', TestHasDependencies); })(window.Snowboard);