-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from FriendsOfREDAXO/set-php
Sets via PHP definieren
- Loading branch information
Showing
1 changed file
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,26 @@ | ||
Minify | ||
====== | ||
# Minify | ||
|
||
Minifies HTML, combines/minfies CSS and JS files. | ||
|
||
![Screenshot](https://raw.githubusercontent.com/FriendsOfREDAXO/minify/assets/minify_01.png) | ||
|
||
|
||
Dieses Addon ermöglicht das minimieren und bündeln von CSS und JS Dateien. | ||
|
||
Dazu kann man unter dem Punkt 'Minify' beliebig viele Sets anlegen. Wichtig ist, dass der Name eines Sets pro Typ (CSS/JS) nur einmal vorkommen kann. In das Feld 'Assets' kommen zeilengetrennt die Pfade zu den einzelnen Dateien. Wenn eine Datei mit '.scss' endet, wird sie automatisch kompiliert. Die Pfade müssen Redaxo-Root relativ sein. | ||
|
||
Anschliessend wird ein Snippet à la "REX_MINIFY[type=css set=default]" generiert, welches im Template an beliebiger Stelle platziert werden kann. Das Snippet ist jeweils in der Set-Übersicht zu finden und kann von da kopiert werden. Das Snippet wird im Frontend automatisch durch einen entsprechenden HTML-Tag ersetzt. | ||
Anschliessend wird ein Snippet à la "REX_MINIFY[type=css set=default]" generiert, welches im Template an beliebiger Stelle platziert werden kann. Das Snippet ist jeweils in der Set-Übersicht zu finden und kann von da kopiert werden. Das Snippet wird im Frontend automatisch durch einen entsprechenden HTML-Tag ersetzt. | ||
|
||
## Tricks | ||
|
||
### Sets via PHP definieren | ||
|
||
Beispiel von @cukabeka | ||
|
||
```php | ||
$minify = new minify(); | ||
foreach ((glob(rex_path::assets()."/css/*.css")) as $css) { | ||
$minify->addFile("/".str_replace(rex_path::base(),"",$css), $set = "bla"); | ||
}; | ||
|
||
echo $minify->minify($type = 'css', $set = "bla"); | ||
``` |