Skip to content

Extension of SilverStripe's requirements to allow for adding scripts and CSS inline from files

License

Notifications You must be signed in to change notification settings

DorsetDigital/silverstripe-requirementsinline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

silverstripe-requirementsinline

Please note: This module is no longer in active development. The functionality which this module provides can now be found in the following module:

https://github.com/DorsetDigital/silverstripe-enhanced-requirements


Extension of SilverStripe's requirements to allow for adding scripts and CSS inline from files

Silverstripe provides a number of ways to add Javascript and CSS to your pages, but currently doesn't allow you to add inline code from external files. This module is a simple way to do this, meaning that you can keep your inline scripts and CSS in separate files to help with your build process, but take advantage of using them inline where needed.

Scrutinizer Code Quality Build Status License Version

Requirements

  • Silverstripe 4.x

Installation

  • Install the code with composer require dorsetdigital/silverstripe-requirementsinline
  • Run a dev/build?flush to update your project

Usage

Use the methods in the same way as the standard Requirements methods for themedCSS() and themedJavascript():

<?php

use DorsetDigital\SilverstripeRequirements\RequirementsInline;

class MyPageController extends PageController
{

 public function init()
 {
  parent::init();
  RequirementsInline::themedJavascript('homescript');
  RequirementsInline::themedCSS('homestyles');
 }
}

About

Extension of SilverStripe's requirements to allow for adding scripts and CSS inline from files

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages