drupal 7

vers tags: module, drupal, drupal 8.

ACR et Enhanced Image

Enhanced Image est un plugin depuis CKEditor 4.3 (la lib) qui remplace image, donne un nouveau type de widget : image avec légende.  Cf ttp://docs.ckeditor.com/#!/guide/dev_captionedimage

Modules Migrate et migrate_d2d

Module Migrate

https://www.drupal.org/project/migrate pour drupal 6 (2.5, nov 2012) et drupal 7 (2.7, fev 2015).

Conversion d'un autre CMS vers drupal, créationusers, nodes... via UI ou drush (recommandé).

Pour la v7, aucun module requis contrairement aux v6.

modules de migration spécialisés

migrate_d2d, https://www.drupal.org/project/wordpress_migrate, ...

Upgrading your Views from Drupal 6 to Drupal 7

Updating templates

If you have theme files for node-view-$viewname of comment-view-$viewname you have
to convert them to node--view--$viewname or comment--view--$viewname.

Updating table templates

The class variable was renamed to $classes. Additional if you want to add
classes, you should add it to $classes_array and drupal will automatically convert it to the $classes string.

Entity API

To be short

An entity type is a base class
A bundle is an extended class
A field is a class member, property, variable or field instance (depending on your naming preference)
An entity is an object or instance of a base or extended class

 

Entity types

In earlier versions of Drupal, the field system was only used on content types. Now, thanks to the Entity API, we can add fields to other things, like comments. An entity type is a useful abstraction to group together fields.
Some examples of entity types:

Subscribe to RSS - drupal 7