makinacorpus / drupal-calista
Advanced dashboard/list API for Drupal using makinacorpus/drupal-calista
Installs: 368
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 14
Forks: 0
Open Issues: 0
Type:drupal-module
Requires
- php: >=5.5
- makinacorpus/drupal-sf-dic: >=3.2.8
- makinacorpus/php-calista: ^1
- symfony/dependency-injection: ^3.2
- symfony/event-dispatcher: ^3.1
- symfony/http-foundation: ^3.1
- symfony/property-info: ^3.2
Requires (Dev)
- phpunit/phpunit: ^5.1
This package is not auto-updated.
Last update: 2024-11-10 05:19:31 UTC
README
This initial version is a raw export of the ucms_dashboard from the https://github.com/makinacorpus/drupal-ucms Drupal module suite. Only namespaces have been changed, and a few utility functions moved from the ucms_contrib module.
It should be stable enough to use.
This is licensed under the GPL-2 licence. This package includes third-party libraries, licences provided in the Resources/meta directory.
Installation
It depends heavily on makinacorpus/drupal-sf-dic, the easiest way to install is:
composer install makinacorpus/drupal-calista
Configuration
Runtime configuration
Enable top toolbar
$conf['calista_context_pane_enable'] = true;
Enable context pane
$conf['calista_context_pane_enable'] = true;
Enable admin pages breadcrumb alteration
This is a very specific setting for usage with UCMS.
$conf['calista_breadcrumb_alter'] = true;
Display configuration
Disable custom CSS
If you wish to embed this module's CSS or custom LESS into your own custom theme, you might wish to disable CSS loading:
$conf['calista_disable_css'] = true;
Drupal seven theme fixes
By setting this to true
, seven fixes will always be included:
$conf['calista_seven_force'] = true;
By setting it to false
, the will be always dropped.
By removing the variable or setting it to null
seven admin theme will be
automatically detected at runtime and fixes will be loaded if necessary.
Usage
For extensive documentation, please refer to the Calista API documentation