Pollen Solutions - Asset Component - Manage CSS styles, JS scripts, ...

v1.0.10 2022-10-14 00:00 UTC

This package is auto-updated.

Last update: 2024-04-13 12:27:34 UTC


README

Latest Stable Version MIT Licensed PHP Supported Versions

Pollen Solutions Asset Component provides tools to manage assets in web applications.

Allows adding of inline Css styles, adding of inline JS scripts or passing PHP vars to Js global vars to access them in your own scripts.

Installation

composer require pollen-solutions/asset

Basic Usage

use Pollen\Asset\AssetManager;

$asset = new AssetManager();

// Add inline CSS
$asset->addInlineCss(
    'body {
        background-color:AliceBlue;
    }'
);

// Add inline JS
$asset->addInlineJs(
    'console.log("value1");
     console.log("value2");
     console.log("value3");'
);

// Add global JS var
// -- app namespaced
$asset->addGlobalJsVar('test1', 'test-value1');

// -- in footer
$asset->addGlobalJsVar('test2', 'test-value2', true);

// -- in footer and without namespace
$asset->addGlobalJsVar('test3', 'test-value3', true, null);

Register asset

@todo

Enqueue assets

@todo

Cache and Minification

Coming soon