Twig Documentation Release Stable

Total Page:16

File Type:pdf, Size:1020Kb

Twig Documentation Release Stable Twig Documentation Release stable Dec 16, 2018 Contents 1 Introduction 1 1.1 Prerequisites...............................................1 1.2 Installation................................................1 1.3 Basic API Usage.............................................2 2 Installation 3 3 Twig for Template Designers5 3.1 Synopsis.................................................5 3.2 IDEs Integration.............................................6 3.3 Variables.................................................6 3.4 Filters...................................................7 3.5 Functions.................................................8 3.6 Named Arguments............................................8 3.7 Control Structure.............................................9 3.8 Comments................................................9 3.9 Including other Templates........................................9 3.10 Template Inheritance........................................... 10 3.11 HTML Escaping............................................. 11 3.12 Escaping................................................. 12 3.13 Macros.................................................. 12 3.14 Expressions................................................ 13 3.15 Whitespace Control........................................... 17 3.16 Extensions................................................ 17 4 Twig for Developers 19 4.1 Basics................................................... 19 4.2 Rendering Templates........................................... 20 4.3 Environment Options........................................... 20 4.4 Loaders.................................................. 21 4.5 Using Extensions............................................. 24 4.6 Built-in Extensions............................................ 24 4.7 Exceptions................................................ 28 5 Extending Twig 29 5.1 Globals.................................................. 30 5.2 Filters................................................... 31 i 5.3 Functions................................................. 33 5.4 Tests................................................... 33 5.5 Tags.................................................... 35 5.6 Creating an Extension.......................................... 37 5.7 Overloading............................................... 42 5.8 Testing an Extension........................................... 43 6 Twig Internals 45 6.1 How does Twig work?.......................................... 45 6.2 The Lexer................................................. 45 6.3 The Parser................................................ 46 6.4 The Compiler............................................... 47 7 Recipes 49 7.1 Displaying Deprecation Notices..................................... 49 7.2 Making a Layout conditional....................................... 50 7.3 Making an Include dynamic....................................... 50 7.4 Overriding a Template that also extends itself.............................. 50 7.5 Customizing the Syntax......................................... 51 7.6 Using dynamic Object Properties.................................... 52 7.7 Accessing the parent Context in Nested Loops............................. 52 7.8 Defining undefined Functions and Filters on the Fly.......................... 53 7.9 Validating the Template Syntax..................................... 54 7.10 Refreshing modified Templates when OPcache or APC is enabled................... 54 7.11 Reusing a stateful Node Visitor..................................... 54 7.12 Using a Database to store Templates................................... 55 7.13 Using different Template Sources.................................... 56 7.14 Loading a Template from a String.................................... 57 7.15 Using Twig and AngularJS in the same Templates........................... 57 8 Coding Standards 59 9 Tags 61 9.1 autoescape .............................................. 61 9.2 block .................................................. 62 9.3 do .................................................... 62 9.4 embed .................................................. 62 9.5 extends ................................................ 65 9.6 filter ................................................. 69 9.7 flush .................................................. 69 9.8 for .................................................... 69 9.9 from ................................................... 71 9.10 if .................................................... 72 9.11 import ................................................. 73 9.12 include ................................................ 74 9.13 macro .................................................. 75 9.14 sandbox ................................................ 76 9.15 set .................................................... 77 9.16 spaceless ............................................... 78 9.17 use .................................................... 78 9.18 verbatim ................................................ 80 9.19 with ................................................... 80 9.20 deprecated .............................................. 81 10 Filters 83 ii 10.1 abs .................................................... 83 10.2 batch .................................................. 83 10.3 capitalize .............................................. 84 10.4 convert_encoding ......................................... 84 10.5 date ................................................... 85 10.6 date_modify ............................................. 86 10.7 default ................................................ 86 10.8 escape ................................................. 86 10.9 first .................................................. 88 10.10 format ................................................. 88 10.11 join ................................................... 88 10.12 json_encode ............................................. 89 10.13 keys ................................................... 89 10.14 last ................................................... 89 10.15 length ................................................. 90 10.16 lower .................................................. 90 10.17 merge .................................................. 90 10.18 nl2br .................................................. 91 10.19 number_format ............................................ 91 10.20 raw .................................................... 92 10.21 replace ................................................ 92 10.22 reverse ................................................ 93 10.23 round .................................................. 94 10.24 slice .................................................. 94 10.25 sort ................................................... 95 10.26 split .................................................. 95 10.27 striptags ............................................... 96 10.28 title .................................................. 97 10.29 trim ................................................... 97 10.30 upper .................................................. 97 10.31 url_encode .............................................. 98 11 Functions 99 11.1 attribute ............................................... 99 11.2 block .................................................. 99 11.3 constant ................................................ 100 11.4 cycle .................................................. 100 11.5 date ................................................... 101 11.6 dump ................................................... 101 11.7 include ................................................ 102 11.8 max .................................................... 103 11.9 min .................................................... 103 11.10 parent ................................................. 104 11.11 random ................................................. 104 11.12 range .................................................. 104 11.13 source ................................................. 105 11.14 template_from_string ...................................... 106 12 Tests 107 12.1 constant ................................................ 107 12.2 defined ................................................ 107 12.3 divisible by ............................................ 108 12.4 empty .................................................. 108 12.5 even ................................................... 108 iii 12.6 iterable ................................................ 108 12.7 null ................................................... 109 12.8 odd .................................................... 109 12.9 same as ................................................ 109 iv CHAPTER 1 Introduction This is the documentation for Twig, the flexible, fast, and secure template engine for PHP. If you have any exposure to other text-based template languages, such as Smarty, Django, or Jinja, you should feel right at home with Twig. It’s both designer and developer friendly by sticking to PHP’s principles and adding functionality useful for templating environments. The key-features are. • Fast: Twig compiles templates down to plain optimized PHP code. The overhead compared to regular PHP code was reduced to the very minimum. • Secure: Twig has a sandbox mode to evaluate untrusted template code. This allows Twig to be used as a template language for applications where users may modify the template design. • Flexible:
Recommended publications
  • Preview Grav Tutorial (PDF Version)
    Grav About the Tutorial Grav is a flat-file based content management system which doesn't use database to store the content instead it uses text file (.txt) or markdown (.md) file to store the content. The flat-file part specifically refers to the readable text and it handles the content in an easy way which can be simple for a developer. Audience This tutorial has been prepared for anyone who has a basic knowledge of Markdown and has an urge to develop websites. After completing this tutorial, you will find yourself at a moderate level of expertise in developing websites using Grav. Prerequisites Before you start proceeding with this tutorial, we assume that you are already aware about the basics of Markdown. If you are not well aware of these concepts, then we will suggest you to go through our short tutorials on Markdown. Copyright & Disclaimer Copyright 2017 by Tutorials Point (I) Pvt. Ltd. All the content and graphics published in this e-book are the property of Tutorials Point (I) Pvt. Ltd. The user of this e-book is prohibited to reuse, retain, copy, distribute or republish any contents or a part of contents of this e-book in any manner without written consent of the publisher. We strive to update the contents of our website and tutorials as timely and as precisely as possible, however, the contents may contain inaccuracies or errors. Tutorials Point (I) Pvt. Ltd. provides no guarantee regarding the accuracy, timeliness or completeness of our website or its contents including this tutorial. If you discover any errors on our website or in this tutorial, please notify us at [email protected] i Grav Table of Contents About the Tutorial ...................................................................................................................................
    [Show full text]
  • Coverity Static Analysis
    Coverity Static Analysis Quickly find and fix Overview critical security and Coverity® gives you the speed, ease of use, accuracy, industry standards compliance, and quality issues as you scalability that you need to develop high-quality, secure applications. Coverity identifies code critical software quality defects and security vulnerabilities in code as it’s written, early in the development process when it’s least costly and easiest to fix. Precise actionable remediation advice and context-specific eLearning help your developers understand how to fix their prioritized issues quickly, without having to become security experts. Coverity Benefits seamlessly integrates automated security testing into your CI/CD pipelines and supports your existing development tools and workflows. Choose where and how to do your • Get improved visibility into development: on-premises or in the cloud with the Polaris Software Integrity Platform™ security risk. Cross-product (SaaS), a highly scalable, cloud-based application security platform. Coverity supports 22 reporting provides a holistic, more languages and over 70 frameworks and templates. complete view of a project’s risk using best-in-class AppSec tools. Coverity includes Rapid Scan, a fast, lightweight static analysis engine optimized • Deployment flexibility. You for cloud-native applications and Infrastructure-as-Code (IaC). Rapid Scan runs decide which set of projects to do automatically, without additional configuration, with every Coverity scan and can also AppSec testing for: on-premises be run as part of full CI builds with conventional scan completion times. Rapid Scan can or in the cloud. also be deployed as a standalone scan engine in Code Sight™ or via the command line • Shift security testing left.
    [Show full text]
  • Symfony 5 : TWIG
    Symfony 5 : TWIG Achref El Mouelhi Docteur de l’universite´ d’Aix-Marseille Chercheur en Programmation par contrainte (IA) Ingenieur´ en Genie´ logiciel [email protected] H & H: Research and Training 1 / 64 Plan 1 Introduction 2 Commentaire 3 Interpolation 4 Declaration´ de variable 5 Operations´ sur les variables 6 Structure conditionnelle 7 Structure iterative´ H & H: Research and Training 2 / 64 Plan 8 Filtre 9 Ref´ erencement´ d’un fichier 10 Lien hypertexte 11 Variables globales 12 Inclusion 13 Block et heritage´ 14 Bonnes pratiques H & H: Research and Training 3 / 64 Remarque Symfony 5 utilise la version 3 de Twig. Introduction Symfony Twig Moteur de templates pour PHP. Apparu en 2009. Syntaxe inspiree´ par Jinja (moteur de template du framework Django de Python). Issu et utilise´ par Symfony . Supporte´ par plusieurs IDE : NetBeans, PhpStorm, Eclipse, Visual Studio Code... Supporte´ par plusieurs editeurs´ de texte : Sublime text, notepad++, vim... © Achref EL MOUELHI © H & H: Research and Training 4 / 64 Introduction Symfony Twig Moteur de templates pour PHP. Apparu en 2009. Syntaxe inspiree´ par Jinja (moteur de template du framework Django de Python). Issu et utilise´ par Symfony . Supporte´ par plusieurs IDE : NetBeans, PhpStorm, Eclipse, Visual Studio Code... Supporte´ par plusieurs editeurs´ de texte : Sublime text, notepad++, vim... © Achref EL MOUELHI © Remarque Symfony 5 utilise la version 3 de Twig. H & H: Research and Training 4 / 64 Inconvenients´ Ralentir le chargement de page Un langage (de template) de plus
    [Show full text]
  • How to Communicate with Developers
    How to Communicate with Developers Employer branding, job listings, and emails that resonate with a tech audience Developers are one of the most in-demand groups of employees these days. And guess what, they noticed this as well: Countless approaches by potential employers, sometimes several messages a day through Linkedin, and a few desperate recruiters even cold calling. So those with technical talents are by no means oblivious to the talent shortage. The good news is that they don’t just use this bargaining power to simply negotiate the highest salaries and most outrageous benefits. Instead, developers are intrinsically motivated. They are looking for the right place to work. Your challenge in this noisy jobs market is to clearly communicate what defines your employer brand, what work needs doing, and, ultimately, who might be the right fit for the role. All of this is easier said than done. Because tech recruiting is a complex business, it is easy to not see the forest for the trees. This guide will help you decide where to start or what to fix next. In the first and more general part, we would like you to take a step back. Before we even think about how to package our job opening and approach a candidate with our offer, we look at what information and knowledge you should gather about your tech team and the company at large. Following that, we will take a practical look at how to write and talk about your company and the role, with a special focus on the job listings and a recruiting emails as a first introduction.
    [Show full text]
  • Thematic Cycle 2: Software Development Table of Contents
    THEMATIC CYCLE 2: SOFTWARE DEVELOPMENT THEMATIC CYCLE 2: SOFTWARE DEVELOPMENT TABLE OF CONTENTS 1. SDLC (software development life cycle) tutorial: what is, phases, model -------------------- 4 What is Software Development Life Cycle (SDLC)? --------------------------------------------------- 4 A typical Software Development Life Cycle (SDLC) consists of the following phases: -------- 4 Types of Software Development Life Cycle Models: ------------------------------------------------- 6 2. What is HTML? ----------------------------------------------------------------------------------------------- 7 HTML is the standard markup language for creating Web pages. -------------------------------- 7 Example of a Simple HTML Document---------------------------------------------------------------- 7 Exercise: learn html using notepad or textedit ---------------------------------------------------- 11 Example: ---------------------------------------------------------------------------------------------------- 13 The <!DOCTYPE> Declaration explained ------------------------------------------------------------ 13 HTML Headings ---------------------------------------------------------------------------------------------- 13 Example: ---------------------------------------------------------------------------------------------------- 13 HTML Paragraphs ------------------------------------------------------------------------------------------- 14 Example: ----------------------------------------------------------------------------------------------------
    [Show full text]
  • The Twig Book
    The Twig Book generated on January 15, 2014 The Twig Book This work is licensed under the “Attribution-Share Alike 3.0 Unported” license (http://creativecommons.org/ licenses/by-sa/3.0/). You are free to share (to copy, distribute and transmit the work), and to remix (to adapt the work) under the following conditions: • Attribution: You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). • Share Alike: If you alter, transform, or build upon this work, you may distribute the resulting work only under the same, similar or a compatible license. For any reuse or distribution, you must make clear to others the license terms of this work. The information in this book is distributed on an “as is” basis, without warranty. Although every precaution has been taken in the preparation of this work, neither the author(s) nor SensioLabs shall have any liability to any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly by the information contained in this work. Contents at a Glance Introduction .......................................................................................................................................5 Twig for Template Designers...............................................................................................................7 Twig for Developers..........................................................................................................................20
    [Show full text]
  • Lightning-Smart PHP IDE Enjoy Productive PHP Development
    REFACTORING Refactor this Ctrl + Alt + Shift + T ⌃ T Lightning-Smart Rename Shift + F6 ⇧F6 PHP IDE Safe delete Alt + Delete ⌘ ⌦ Inline variable Ctrl + Alt + N ⌘ ⌥ N Extract Method / Variable Ctrl + Alt + M / V ⌘ ⌥ M / V EDITING Extract Parametert / Constant Ctrl + Alt + P / C ⌘ ⌥ P / C Basic code completion Ctrl + Space ⌃ Space GENERAL Show intention actions Alt + Enter ⌥ ↩ and quick-fixes Search everywhere Double Shift Double⇧ Quick documentation lookup Ctrl + Q F1 , ⌃ J Find action Ctrl + Shift +A ⌘⇧A Parameter info Ctrl + P ⌘ P Open corresponding Alt + 0 ... 9 ⌘ 0 ... ⌘ 9 Generate code Alt + Insert ⌘ N, ⌃↩ tool window Surround with... Ctrl + Alt + T ⌘ ⌥ T Open Preferences Ctrl + Alt + S ⌘ , Insert live template Ctrl + J ⌘ J Comment / uncomment line Ctrl + / ⌘ / SEARCH Comment / uncomment block Ctrl + Shift + / ⌘⇧/ Extend syntax-aware selection Ctrl + W ⌥↑ Find Ctrl + F ⌘ F Shrink syntax-aware selection Ctrl + Shift + W ⌥↓ Find in path Ctrl + Shift + F ⌘⇧F Add or remove caret Alt + Click ⌥Click Find usages Alt-F7 ⌥ F7 Select all occurrences Shift + Ctrl + Alt + J ⌘ ⌃ G Find usages in file Ctrl + F7 ⌘ F7 Select next occurrence Alt + J ⌃ G Show usages Ctrl + Alt + F7 ⌥ ⌘ F7 Unselect occurrence Alt + Shift + J ⌃⇧G Unselect all occurrences Esc ⎋ NAVIGATION or carets Duplicate current line Ctrl + D ⌘ D Go to declaration Ctrl + B, Ctrl + Click ⌘ B, ⌘ Сlick Delete line Ctrl + Y ⌘ ⌨ Go to class Ctrl + N ⌘ O Move line up Alt + Shift + Up ⌥⇧↑ Go to file Ctrl + Shift + N ⌘⇧O Move line down Alt + Shift + Down ⌥⇧↓ Go to symbol Ctrl + Alt + Shift
    [Show full text]
  • Global Village Webapps 1/19 Wordpress 5.2 (5.2.12)
    Webspace Webspace Webspace Dedicated Basic Professional Premium Server Werbung Revive Adserver (5.3.0) Yclas (4.3.0) Blogs b2evolution (7.2.3) Dotclear (2.19) FlatPress (1.2.1) HTMLy (2.8.1) Serendipity (2.3.5) Textpattern (4.8.7) WordPress (5.8.1) WordPress 4.9 (4.9.18) WordPress 5.0 (5.0.14) WordPress 5.1 (5.1.11) Version: 2021-10-02 Global Village WebApps 1/19 WordPress 5.2 (5.2.12) Kalender Booked (2.8.5) LuxCal (5.1.1M) Portale / CMS Bludit (3.13.1) Bolt (3.7.1) CMS Made Simple (2.2.15) CMSimple (5.4) Composr (10.0.38) Concrete CMS (8.5.6) Croogo (4.0.7) CSZ CMS (1.2.9) Directus (8.8.1) Drupal (9.2.6) Version: 2021-10-02 Global Village WebApps 2/19 Drupal 7 (7.82) e107 (2.3.0) Fork (5.10.0) Geeklog (2.2.1sr1) GeniXCMS (1.1.8) GRAV (1.7.23) ImpressCMS (1.4.2) Jamroom (6.5.10) Joomla (4.0.3) Kirby (3.5.7.1) Kopage (3.1.9) LEPTON (5.2.0) Mahara (21.04.1) Microweber (1.2.9) MODX (2.8.3-pl) Version: 2021-10-02 Global Village WebApps 3/19 NukeViet CMS (4.5.00) OctoberCMS (1.0.472) Open Real Estate (1.35.1) Pagekit (1.0.18) PHP-Fusion (9.10.00) phpwcms (1.9.30) Pimcore (10.1.4) Pluck (4.7.15) PluXml (5.8.7) Precurio (4.4) ProcessWire (3.0.184) Quick.CMS (6.7) Redaxscript (4.5.0) SCHLIX CMS (2.2.7-2) SilverStripe (4.8.0) Version: 2021-10-02 Global Village WebApps 4/19 Tiki Wiki CMS Groupware (18.8) Tiki Wiki CMS Groupware (21.4) Tiki Wiki CMS Groupware 15 (15.9) TYPO3 (10.4.21) TYPO3 9 (9.5.31) WBCE CMS (1.5.0) WebsiteBaker (2.13.0) WonderCMS (3.1.4) Zenario (9.0.54156) Zikula (3.0.3) Kundensupport Attendize (2.3.1) Faveo Helpdesk (1.11.0)
    [Show full text]
  • Download This Ebook for Free
    twig #twig Table of Contents About 1 Chapter 1: Getting started with twig 2 Remarks 2 Examples 2 Basic API Usage 2 What is Twig? 3 Introduction 4 Chapter 2: Advanced usage 6 Remarks 6 Examples 6 Building the C Extension 6 Chapter 3: Basic template syntax 7 Introduction 7 Examples 7 Accessing variables 7 Accessing array elements 7 Accessing object properties 7 Filters 8 Conditional blocks 8 For Loop 9 Ternary Operator (Shorthand If-Then-Else) & Null-Coalescing Operator 9 The ternary operator (?:) 9 The null-coalescing operator (??:) 10 Whitespace handling 10 Chapter 4: Extending twig 12 Remarks 12 Examples 12 Adding custom filters/functions 12 Creating a Twig_Extension 12 Simple Date of Birth to age filter 13 Chapter 5: Template inheritance 15 Examples 15 Using a base template 15 base.twig.html 15 Change the content of an included template 15 article.twig.html 16 articles.twig.html 16 Variable inheritance 16 parent.html.twig 16 child.html.twig 16 Comparison of Include, Extends, Use, Macro, Embed 16 Include 17 Extends 17 Use 17 Macro 18 Embed 18 Credits 21 About You can share this PDF with anyone you feel could benefit from it, downloaded the latest version from: twig It is an unofficial and free twig ebook created for educational purposes. All the content is extracted from Stack Overflow Documentation, which is written by many hardworking individuals at Stack Overflow. It is neither affiliated with Stack Overflow nor official twig. The content is released under Creative Commons BY-SA, and the list of contributors to each chapter are provided in the credits section at the end of this book.
    [Show full text]
  • Key Facts Key Benefits Key Features
    Key Facts JetBrains PhpStorm is a professional and intelligent PHP IDE providing developers a mix of powerful intelligent tools, useful everyday actions and best practices for PHP development, all geared toward enhancing developer productivity. System Requirements Key Benefits Microsoft Windows 8/7/ PhpStorm features an editor that actually ‘gets’ your code and deeply understands Vista/2003/XP (incl.64-bit) its structure, supporting all the latest PHP versions for modern and legacy projects. It provides the best code autocompletion, refactorings, on-the-fly error prevention, Mac OS X 10.5 or higher, supports language mixtures and more. including 10.9 (Mavericks) Hundreds of inspections take care of verifying your code, analyzing the whole project. GNOME or KDE desktop PHPDoc support, code (re)arranger, code formatter with code style configuration and for Linux other features help you write neat code that’s easy to support. 1 GB RAM minimum, All the cutting-edge web development technologies are supported including HTML5, 2 GB RAM recommended CSS, Sass, SCSS, Less, CoffeeScript, TypeScript, Dart, ECMAScript Harmony, Jade templates, Zen Coding, Emmet, AngularJS, and of course JavaScript. JDK 1.6 or Higher PhpStorm includes all the functionality of WebStorm (HTML/CSS Editor, JavaScript 1024x768 minimum Editor) and adds full-fledged support for PHP and Databases/SQL. screen resolution Key Features Headquarters and • Intelligent code editor for PHP with syntax highlighting, code completion, extended International Sales code formatting configuration,
    [Show full text]
  • Web Social Pour Monnaie Libre
    Web social pour monnaie libre Fabien Brisset - [email protected] Florian Galinier - fl[email protected] Thin-Hinen Hedli - [email protected] Rime Lamrani - [email protected] Oualid Manai - [email protected] Quentin Philbert - [email protected] Adrien Plazas - [email protected] Clément Simon - [email protected] Résumé Ce rapport est le compte rendu du projet Web social pour monnaie libre exécuté par les auteurs et proposé par Jacques Ferber pour l’unité d’enseignement GLIN601 Projet du sixième semestre du parcours Licence Informatique de la Faculté de Sciences de Montpellier en 2013-2014. Remerciements Nous remercions tout particulièrement Jacques Ferber pour nous avoir brillamment encadré et soutenu tout le long de la réalisation de ce projet. 1 Table des matières 1 Introduction 6 1.1 Le sujet . .6 1.1.1 Objectif de ce projet . .6 1.1.2 Ce qu’est une monnaie libre . .6 1.1.3 Les SELs (réseaux sociaux autour d’une monnaie libre) . .6 1.2 Cahier des charges . .6 1.2.1 Fonctionnalités attendues . .6 1.2.2 Contraintes . .7 2 Organisation du projet 8 2.1 Organisation du travail . .8 2.1.1 Réunions de travail . .8 2.1.2 Répartition des tâches . .8 2.1.3 Planification du développement . .8 2.1.4 Élection d’un chef de projet . .8 2.1.5 Gestion du groupe d’étudiants . .8 2.2 Choix des outils de développement . .9 2.2.1 Analyse des outils disponibles .
    [Show full text]
  • List of Tools Recommended for the Creation of Website
    List of tools recommended for the creation of website. Philemonday Agency recommends tools, scripts and plug-ins to build your website. We list here more than 390 scripts that we had the opportunity to use during our missions of creation of website. We are using to work on all of these scripts. Feel free to contact us. http://www.philemonday-agency.com/ April 2014 [SOURCES] Philemonday Agency recommends tools, scripts and plug-ins to build your website. We list here more than 390 scripts that we had the opportunity to use during our missions of creation of website. We work on all of these scripts. == 4images Chevereto Free Elgg Aardvark Topsite Chive ElkArte AbanteCart Chyrp EPESI AbanteCart CJ Dynamic Poll EspoCRM Admidio Claroline eSyndiCat Adminer ClientExec Etano Advanced Guest.. ClipBucket Eventum Advanced Poll ClipperCMS ExoPHPDesk AEF CMS Made Simple ExtCalendar Agora-Project CMSimple eXtplorer AJAX Chat CodeIgniter eyeOS AlegroCart Codiad Family Connect.. Ampache Collabtive Faveo Helpdesk AmpJuke Commentics Feed On Feeds Anchor Composr Feng Office appRain Concrete5 Fiyo CMS Arastta Contao FlatPress Arfooo Coppermine FluxBB ArticleSetup Cotonti Flyspray ATutor Croogo Fork Avactis CubeCart Form Tools Axis CubeCart FreshRSS b2evolution CumulusClips FrontAccounting bbPress Dada Mail FUDforum Beatz DIY FuelPHP Beehive DoceboLMS Fusio BellaBook Dokeos Gallery BlaB DokuWiki Geeklog BlackNova Trad.. Dolibarr Ghost Blesta Dolphin Gibbon Bludit Dolphin GLPI Bolt DomainMOD GNU social Booked Dotclear GPixPixel Bootstrap dotProject GRAV BoxBilling Drupal Gregarius Brushtail e107 Group Office Bugs EasyPoll Hablator Burden EC-CUBE Help Center Li.. CakePHP eFront HelpDeskZ ccMail eggBlog HelpDEZk Chamilo EGroupware HESK Hotaru CMS Mibew Messenger PHP QR Code HTML Purifier Microweber PHP-Fusion HTMLy miniBB PHP-Nuke HumHub MODX phpAlbum iGalerie Monsta FTP phpBB Impleo Monstra phpBB ImpressCMS Moodle phpBook ImpressPages Movable Type phpCOIN InfiniteWP Multiplayer Ch.
    [Show full text]