php templating engines by martin sotirov - 20160217

17
PHP Template–Engines für WordPress-Entwicklung 17.02.2016 Martin Sotirov

Upload: wpmeetupka

Post on 12-Apr-2017

215 views

Category:

Internet


4 download

TRANSCRIPT

Page 1: PHP Templating Engines by Martin Sotirov - 20160217

PHP Template–Engines für WordPress-Entwicklung

17.02.2016

Martin Sotirov

Page 2: PHP Templating Engines by Martin Sotirov - 20160217

Inhalt

• Was sind Template-Engines?

• Warum überhaupt Template-Engines?

• PHP Template-Engines

• Template-Engines in WordPress Integrieren

Page 3: PHP Templating Engines by Martin Sotirov - 20160217

Was ist ein Template-Engine?

„eine Software, die eine Vorlagen-Datei verarbeitet und bestimmte Platzhalter durch jeweils aktuelle Inhalte ersetzt”

– Wikipedia

Page 4: PHP Templating Engines by Martin Sotirov - 20160217

PHP (1994)

Page 5: PHP Templating Engines by Martin Sotirov - 20160217

PHP (2016)

Page 6: PHP Templating Engines by Martin Sotirov - 20160217

Hallo, Erika Mustermann

Page 7: PHP Templating Engines by Martin Sotirov - 20160217

Warum Template-Engines verwenden?

• Sicherheit

Page 8: PHP Templating Engines by Martin Sotirov - 20160217

Warum Template-Engines verwenden?

• Sicherheit

• Separation of Concerns (das „I“ in SOLID)

Page 9: PHP Templating Engines by Martin Sotirov - 20160217

Warum Template-Engines verwenden?

• Sicherheit

• Separation of Concerns (das „I“ in SOLID)

• Designer können auch mitmachen

Page 10: PHP Templating Engines by Martin Sotirov - 20160217

PHP Template-Engines

• Smarty (http://www.smarty.net)

• Twig (http://twig.sensiolabs.org)

• Blade (https://github.com/PhiloNL/Laravel-Blade)

• Mustache (https://github.com/bobthecow/mustache.php)

Page 11: PHP Templating Engines by Martin Sotirov - 20160217

Template-Engines in WordPress

Mit Composer im eigenen Theme oder Plugin Installieren

Page 12: PHP Templating Engines by Martin Sotirov - 20160217

Twig

Page 13: PHP Templating Engines by Martin Sotirov - 20160217

Blade

Page 14: PHP Templating Engines by Martin Sotirov - 20160217

Smarty

Page 15: PHP Templating Engines by Martin Sotirov - 20160217

Mustache

Page 16: PHP Templating Engines by Martin Sotirov - 20160217

WordPress–spezifisches Beispiel

Page 17: PHP Templating Engines by Martin Sotirov - 20160217

Fragen