Maintainers monitor issues, but fast responses are not guaranteed.

Editr

Editr is HTML, CSS and JavaScript playground that you can host on your server.

block class wrap

Extension of project block_class

Block Class Wrap allows users to use any classes also in div wrapper/layers around block that was added using block Class project.

block divwrap

Example of prefix and suffix block with div wrapper and div layers.

BrightTALK Field

BrightTALK Field

Provides fields that can display a BrightTALK webcast or channel.

BrightTALK embeds are fully functional and allow users to register and view content both live and on demand.

Modulizer

Drupal 8 requires an awful lot of boilerplate code in order to write modules, and this makes baby kittens cry.

So what this module (which is currently not a module at all, but a horrifying static PHP script written over one sleepless night) does is transform a simple YAML syntax to scaffolding code to eliminate rage. The goal is to be sort of like Module Builder and Profiler rolled into one (and it might make sense to merge this into one of those projects if anything more ever comes of it.)

Example

By defining a YAML file like so:

name: Example
description: An example module.
core: 8.x
type: module

routes:
  hello_world:
    path: 'hello'
    type: page
    access:
      type: permission
      name: access content

...Modulizer generates the following:

├── example.info.yml
├── example.module
├── example.routing.yml
└── lib
    └── Drupal
        └── example
            └── Controller
                └── ExampleController.php

Go to the path http://localhost/hello, and voila! You see a page! :D

To-do

Essentially, everything. :P

- Make it an actual module! :P
- Convert it to Drush hooks instead of horrifying, hard-coded, insecure travesty that it is currently.

Pages

Subscribe with RSS Subscribe to RSS - Minimally maintained