PHP code example of skrip42 / static-collector-bundle
1. Go to this page and download the library: Download skrip42/static-collector-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
skrip42 / static-collector-bundle example snippets
namespace App\Some;
use Skrip42\Bundle\StaticCollectorBunde\StaticCollector;
class SomeClass
{
public function someMethod(StaticCollector $staticCollector)
{
//you can add some static to collector
$staticCollector->addStatic('webpack_asset_or_external_link');
//you can get style and script from staticCollector
$staticCollector->getStyleTags();
$staticCollector->getScriptTags();
//you can remove all static from staticCollector
$staticCollector->clear();
}
}