contao-bootstrap / core

Licence: LGPL-3.0 license
Bootstrap 4 Contao Core Component

Programming Languages

PHP
23972 projects - #3 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to core

check
Contao Check
Stars: ✭ 49 (+206.25%)
Mutual labels:  contao
contao-leads
No description or website provided.
Stars: ✭ 31 (+93.75%)
Mutual labels:  contao
contao-ajax reload element
AjaxReloadElement for Contao Open Source CMS
Stars: ✭ 15 (-6.25%)
Mutual labels:  contao
docker-contao
Setup Contao Projects with docker
Stars: ✭ 21 (+31.25%)
Mutual labels:  contao
docs-archive
Contao Documentation
Stars: ✭ 44 (+175%)
Mutual labels:  contao
managed-edition
Contao Managed Edition
Stars: ✭ 15 (-6.25%)
Mutual labels:  contao
contao-events subscriptions
Contao extension that allows members of your website to subscribe to the events
Stars: ✭ 12 (-25%)
Mutual labels:  contao
contao-theme-framework
A new standardized and database-less way to build frontend themes in Contao.
Stars: ✭ 13 (-18.75%)
Mutual labels:  contao
contao-cookiebar
Display the information about cookies on your Contao website
Stars: ✭ 27 (+68.75%)
Mutual labels:  contao
catalog-manager
Backend Module ohne Programmierkenntnisse erstellen.
Stars: ✭ 28 (+75%)
Mutual labels:  contao
contao-content-api-bundle
Contao JSON-API
Stars: ✭ 41 (+156.25%)
Mutual labels:  contao

Contao-Bootstrap Core

Version GitHub issues License Build Status Downloads

This extension provides Bootstrap 4 integration into Contao.

Contao-Bootstrap is a modular integration. The core components provides the infrastructure for other components.

Features

  • Bootstrap environment
  • Config system
  • Template pre and post render filters

Changelog

See changelog

Requirements

  • PHP ^7.4 || ^8.0
  • Contao ^4.9

Install

Managed edition

When using the managed edition it's pretty simple to install the package. Just search for the package in the Contao Manager and install it. Alternatively you can use the CLI.

# Using the contao manager
$ php contao-manager.phar.php composer require contao-bootstrap/core~2.0

# Using composer directly
$ php composer.phar require contao-bootstrap/core~2.0

Symfony application

If you use Contao in a symfony application without contao/manager-bundle, you have to register following bundles manually:

class AppKernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new Contao\CoreBundle\HttpKernel\Bundle\ContaoModuleBundle('metapalettes', $this->getRootDir()),
            new ContaoBootstrap\Core\ContaoBootstrapCoreBundle(),
        ];
    }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].