GraphQL_API

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

GraphQL Service Endpoint for Drupal 8 entities.

Hello, this is my first Community contribution, as well as my first Drupal 8 project. I still have much to learn.

I am developing this project simultaneously for Drupal 8 and Drupal 6 in hopes of keeping a Drupal back-end while moving my websites' clients to React and React Native.

Site Common

Component type

module

Maintenance status

Development status

Component created

Component changed

Site common is an collection of common things i use on all my projects lately.
This module requires https://www.drupal.org/sandbox/qwaygon/2679375.

Module highlights:

Promotion Blocks

Component type

module

Categories

Maintenance status

Development status

Downloads

262

Component created

Component changed

Promotions block comes with a content type called promotions and a block which lists all nodes of that content type. Any user that creates nodes of the type promotions will have the content appear in the block and cycled using the Jquery Cycle plugin.

The module depends on the Jquery cycle plugin which needs to be downloaded from http://malsup.github.io/jquery.cycle.all.js.
to a folder named 'jquery-cycle' inside libraries folder of your site.

Token Modifier

Component type

module

Categories

Maintenance status

Development status

Downloads

621

Component created

Component changed

Token modifier provides a meta token that allows you to modify the output of other tokens.

Usage

To use these token modifiers, you simply add a prefix to your existing token.

[token-modifier:{modifier}:{existing token}]

The modifiers should work anywhere the existing token would work. It passes through all the context available to the original token.

For example: output the current users' username as title case:

[token-modifier:title-case:current-user:name]

Path Entity Context

Component type

module

Categories

Maintenance status

Development status

Downloads

99

Component created

Component changed

Module provides a CTools context that loads an entity of given type from a given path argument.

E.g. if current path is user/%user/orders/%commerce_order, the module allows to obtain commerce order
object from the fourth path argument.

The module adds one new context per entity type (e.g. "Node from path", "User from path"). Context settings form allows
to select the path argument position to use as entity ID.

Twig Extender

Component type

module

Maintenance status

Development status

Downloads

7345

Component created

Component changed

Add a simple plugin system to add new twig extensions (Filter and Functions). Provides a new service provider for "twig.extensions" to add new plugins.

Versions

Drupal 8.2 or lower: Use Twig Extender 8.1
Drupal 8.3 or higher: Use Twig Extender 8.2

Included filters and functions

Filter: truncate

A Wrapper for https://api.drupal.org/api/drupal/core!lib!Drupal!Component!Utility!Unic...