Drupal 7 to 8 Module Upgrader [dead]
Component type
Categories
Maintenance status
Development status
Component created
Component changed
This project is dead! We've moved to https://drupal.org/project/drupalmoduleupgrader
This project is dead! We've moved to https://drupal.org/project/drupalmoduleupgrader
The online service yUML is a great tool to generate UML Diagrams.
With this module you can write your text then embed a diagram by adding
<pre>
[yuml diagram:class style:scruffy
[Text editor]-(Writes article)
(Writes article)>(Drupal)
(Drupal)>(Uses yUML)
]
</pre>
which is rendered into the image below.
This project is a command-line script that scans the source of a Drupal 7 module, flags any code that requires updating to Drupal 8, points off to any relevant API change notices, and (where possible) will actually attempt to convert the Drupal 7 code automatically to the Drupal 8 version! The goal is to hit the most widely-used Drupal hooks and ensure there's coverage for them. See the current battle plan.
Check out the latest demo video:
One Multistep module is a tool for creating form builder functions using the Form API. By defining dependencies between form elements, One Multistep creates the #ajax to respond to changes in js enabled clients, and transform each step on a sub multi-step form for non js enabled clients.
Creates a multistep form (if you define any steps) and for each step:
js enabled - Updates the dependent elements using AJAX.
no js - Converts the step on a sub multi-step form based on the dependencies.
After lots of frustration and not-close-enough results with other HTML to PDF modules & libraries, I decided to make a Drupal implementation of something I know works extremely well.
IMHO: WkHtmlToPdf is just fantastic!
The Print module was way more than I needed and still would have required custom work for my requirements.
This is intended for module developers, nothing is usable from the front-end.
This module provides a function that acts identical to "drupal_add_js()" but will be stored in a session instead and be executed on the next page request (init).
This could be useful if you want to trigger an event after a redirect etc.
set_js_queue('js/script.js', array(
'type' => 'file',
'scope' => 'footer',
'weight' => 3
));
A fork of the commerce_discount module that includes my alteration that leaves line item prices to their original value instead of showing as the discounted price.
A MiniProfiler for Drupal.
Provides a form and a context to panels. The context get data form form and exposes it as context properties in panels.