c975l / includelibrary-bundle
Bundle to include easily main libraries jQuery, Bootstrap, etc. to your html header
Fund package maintenance!
Patreon
Open Collective
buymeacoff.ee/laurentmarquet
Installs: 764
Dependents: 10
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.0
Requires (Dev)
- dev-main
- v3.4
- v3.3.2
- v3.3.1
- v3.3
- v3.2
- v3.1.1
- v3.1
- v3.0.1
- v3.0
- 2.x-dev
- v2.0.2
- v2.0.1
- v2.0
- 1.x-dev
- v1.13.1
- v1.13
- v1.12.1.1
- v1.12.1
- v1.12
- v1.11.1
- v1.11
- v1.10.2
- v1.10.1
- v1.10
- v1.9.8
- v1.9.7
- v1.9.6
- v1.9.5.1
- v1.9.5
- v1.9.4.1
- v1.9.4
- v1.9.3
- v1.9.2
- v1.9.1
- v1.9
- v1.8.3
- v1.8.2
- v1.8.1.1
- v1.8.1
- v1.8
- v1.7.8
- v1.7.7
- v1.7.6.1
- v1.7.6
- v1.7.5.1
- v1.7.5
- v1.7.4
- v1.7.3
- v1.7.2
- v1.7.1
- v1.7
- v1.6.1.1
- v1.6.1
- v1.6
- v1.5.1
- v1.5
- v1.4.1
- v1.4
- v1.3.2.1
- v1.3.2
- v1.3.1
- v1.3
- v1.2
- v1.1
- v1.0
- dev-dev
This package is auto-updated.
Last update: 2024-11-12 10:49:48 UTC
README
Fed up of having to look to latest, or specifc, version of jQuery, Bootstrap, etc. IncludeLibraryBundle is made for you ;-)
Want to replace this
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"> </script>
by this?
{{ inc_lib('bootstrap', 'css', '3.3.7') }} {{ inc_lib('bootstrap', 'js', '3.3.7') }}
IncludeLibraryBundle will let you specify which library and version to include, version can use wildcard "*". It will do a lot more, see "How to use" below.
Subresource Integrity are provided, even for the libraries that don't provide them, based on https://www.srihash.org/
You can also include Google Font, see below.
IncludeLibraryBundle dedicated web page.
IncludeLibraryBundle API documentation.
## Bundle installation
### Step 1: Download the Bundle
Use Composer to install the library
composer require c975l/includelibrary-bundle
### How to use
IncludeLibraryBundle provide the following Twig extension functions inc_lib()
, inc_link()
, inc_content()
and inc_font()
### Include Library - inc_lib()
Simply add {{ inc_lib('library', 'type', 'version', 'params') }}
to your header and that's it!
- library is the name of the library (see below Supported libraries). It is case unsensitive and can have "-" or "_", if you want to use 'BoOsTrap', it will work ;-).
- type is
css
orjs
orlocal
, also case insensitive. - version is the version wanted, it can use wildcard or be omitted to get the latest one.
- params is the parameters you want to add when calling a javascript.
### Examples
{{ inc_lib('bootstrap', 'css') }}
: Latest version
{{ inc_lib('bootstrap', 'css', '3.3.7') }}
: Specific version
{{ inc_lib('bootstrap', 'css', '3.*') }}
: Wildcard MAJOR version
{{ inc_lib('bootstrap', 'css', '3.3.*') }}
: Wildcard MINOR version
{{ inc_lib('bootstrap', 'css', '3.3.3.*') }}
: Wildcard PATCH version
{{ inc_lib(absolute_url(asset('css/styles.min.css')), 'local') }}
: local file
### Local file
To include a local file, you need to provide an absolute url. Important the type is determined by the extension provided in the url, so it has to be '.css' or '.js'. While it's not really useful for inc_lib()
, it is for inc_content()
(see below) as it will allow to include the content of the called library in the html, which can be useful when creating PDF files with wkhtmltopdf
for example.
### Javascript parameters
For javascript, if you need to add some url query parameters, you can do so by calling the fourth argument params
of inc_lib()
. Works also for local file.
For example, Tinymce needs an apiKey, so call it like this: {{ inc_lib('tinymce', 'js', 'stable', '?apiKey=YOUR_API_KEY') }}
, you simply need to provide the full query parameters, including "?" and "&" as it will be added to the srcipt call.
### Just get link - inc_link()
You can also use inc_link
in the same way {{ inc_link('bootstrap', 'css', '3.*') }}
to get only the href (css) or src (js) part (url). Does not work for a local file as it will return the same url as provided.
For example, Tinymce needs to get the css used on the website to display using those styles, so we need to provide it the url, inc_link
will do so :
<script type="text/javascript"> tinymce.init({ content_css : [ '{{ inc_link('bootstrap', 'css', '3.*') }}', ], //... }); </script>
### Get content - inc_content()
If you need to get the content to include, i.e. for wkhtmltopdf
, you can use the function inc_content
in the same way {{ inc_content('bootstrap', 'css', '3.*') }}
. Works also for local file. Content will be wrapped within <style type="text/css"></style>
for css
and <script type="text/javascript"></script>
for js
.
### Include Google font - inc_font()
All you have to do is to worry about its name! Find your Google Font, pick its name and call it with {{ inc_font('FONT_NAME') }}
. That's it! Now you can refer, using the same names in your css files!
## Supported libraries
Use following names and versions (+ wildcard if wanted, as indicated above) in the functions inc_lib
, inc_link
or inc_content
:
To find supported versions check the sub-folders of src/integrities
- Angular (javascript)
- Bootstrap (css + javascript)
- Bootstrap DatePicker (css + javascript)
- CookieConsent (css + javascript)
- jQuery + Slim (javascript)
- jQueryUI (javascript)
- FontAwesome + Base + Regular + Brands + Solid (css + javascript)
- Popper (javascript)
- React (javascript)
- Select2 (css + javascript)
- Tinymce (javascript)
How to add libraries and/or versions
- Go into the folder
Libraries
, - Open the library class (or add it if not present),
- Locate the corresponding method
getCss()
orgetJavascript()
, - If you add new Library, add method
getVersion()
, - Add versions and wildcards to the methods
getVersion()
, keeping the latest above, - Add the needed data (take example on existing ones).
Feel free to make PR's to add other libraries/versions :-)
If this project help you to reduce time to develop, you can sponsor me via the "Sponsor" button at the top :)