Phần 6 - New Back-End Features trong Drupal 8

Phần 6 - New Back-End Features trong Drupal 8

Welcome to the 6th installment of an 8-part blog series we're calling "The Ultimate Guide to Drupal 8." Whether you're a site builder, module or theme developer, or simply an end-user of a Drupal website, Drupal 8 has tons in store for you! This blog series will attempt to enumerate the major changes in Drupal 8.

>> Hướng dẫn chính cho Drupal 8: Episode 1 - Authoring Experience Improvements

>> Hướng dẫn chính cho Drupal 8: Episode 2 - Mobile Improvements

>> Hướng dẫn chính cho Drupal 8: Episode 3 - Site Builder Improvements

>> Hướng dẫn chính cho Drupal 8: Episode 4 - Multilingual Improvements

>> Hướng dẫn chính cho Drupal 8: Episode 5 - Front-End Developer Improvements

Please note that since Drupal 8 is still under active development, some of the details below may change prior to its release. Still, since Drupal 8 is now feature-frozen, hopefully most info should remain relevant. Where applicable, Drupal 7 contrib equivalents of Drupal 8 features will be noted.

New configuration management system

Probably the most looked-forward-to change in Drupal 8, for both developers and site builders, is the new configuration management system in Drupal 8. In Drupal 7 and below, both content and configuration were saved to the database (sometimes with a mix of both in the same table!), making deploying configuration changes from one environment to another (e.g. dev to prod) a very tricky affair. A variety of workarounds emerged for this, including hook_update_N()Features module, and of course the old standby: carefully writing the configuration changes you made on dev down on a napkin and then manually repeating them in production. ;) However, all of these were attempting to circumvent the fundamental problem that Drupal core didn't properly support configuration deployment natively… until Drupal 8, that is!

In Drupal 8, all configuration changes (both standard admin settings forms such as site name, as well as any ConfigEntity including Views, user roles, and content types) run through a unified configuration API. Each environment has both an "active" store (where configuration settings are written to and read from on every page load) as well as a "staging" store to hold configuration changes from other environments that are about to be imported, for review. For performance, by default the active store is in a "config" table in the database (somewhat analogous to the "variables" table in D7 and below), though the storage location is swappable. Configuration Development module, for example, writes active configuration out to YAML files in the file system, just as core does with the staging store.

Drupal 8 also ships with a basic UI to do both single and full configuration imports and exports, and configuration can also be moved around via the command line with Drush's config-* commands, which is handy when using version control systems such as Git.

The basic workflow (after making whatever configuration changes to your Drupal 8 site) is:

  1. On the dev site, export your site's "active" configuration. You'll receive a tarball that consists of lots of YAML files.
  2. On production, import the files, which places them into the config "staging" area.
  3. In the configuration UI, you can now see a list of what configuration settings have changed, and have an opportunity to view a "diff" of changes in advance.
  4. If changes are acceptable, you can choose to synchronize them, which will replace production's current active store with the contents of staging, and become the new values that Drupal will use to build pages.

Configuration synchronization UI, showing a diff between old and new configuration.

Of course, there are some settings that are specific to a given environment and you don't want to be deployed across environments. One such example is a timestamp storing the last time cron ran. For these, there's a "sister" API to the config API called the State API for these more ephemeral settings.

What about content deployment?

While Drupal 8 core doesn't ship with support for migrating content such as nodes, users, and taxonomy terms between sites (though this could happen in a later feature release such as 8.1.0 or 8.2.0), one welcome addition to Drupal 8 has been the introduction of UUIDs (Universally unique identifiers) to every piece of content, such as b2423870-b19b-45e7-8407-076aee906870. These UUIDs can be used to determine whether a piece of content exists on a given destination site, regardless of whether the content's numeric ID conflicts, making content imports/exports infinitely easier. Keep your eyes on the Deploy module for a Drupal 8 version. If you're still on Drupal 7, you can get similar functionality to what core offers via the Universally Unique IDentifier module.

Entities, entities, everywhere!

Entities were a key new feature and concept in Drupal 7, abstracting the ability to add fields to other types of content than just nodes, such as users and taxonomy terms. However, the Drupal 7 core API was severely limited, and required use of modules like the Entity API module to further flesh out basic functionality, such as saving and deleting.

In Drupal 8, the Entity API has been completely re-hauled to not only fill the gaps in functionality from Drupal 7, but also to greatly improve developer experience. All entities are now classed objects that implement a standard EntityInterface (no more guessing which of the 100 entity hooks you're required to implement!), with baked-in knowledge about the active language. Compare and contrast:

<?php

# Drupal 7 code.
$node->title
$node->body[$langcode][0]['value']

# Drupal 8 code.
$node->get('title')->value
$node->get('body')->value
?>

Nearly anything you can create more than one of has been converted to an entity, bringing much greater consistency to Drupal development overall. There are two kinds: Config entities and Content entities. What's the difference?

Content Entities

Config Entities

  • Can customize fields
  • Stored in database tables (by default)
  • Mostly created on front-end
  • Can deploy to different environments
  • Stored in configuration system
  • Mostly created on back-end

Examples

  • Nodes
  • Custom Blocks
  • Users
  • Comments
  • Taxonomy Terms
  • Menu Links
  • Aggregator Feeds/Items

Examples

  • Content Types
  • Custom Block Types
  • User Roles
  • Views
  • Taxonomy Vocabularies
  • Menus
  • Image Styles

Content entities also sport some nifty new features compared to Drupal 7, such as revisions on not just nodes but also custom blocks, and the ability to add comments to any content entity (so you can even have comments on comments—WOAH). The Site Builder Improvements article has more information about other entity-related features.

Wither hook_schema()?

What does this mean for you as a developer? It means that between the Entity API and the Config/State API, there is almost never a reason to create and manage your own database tables by hand in Drupal 8. By using these standard APIs, you will both benefit from writing less brittle code, and also benefit from portability to other databases such as MongoDB.

Web Services

A major focus for Drupal 8, both to enable the creation of Drupal-backed mobile applications, but also to facilitate cross-site communication and better integration with third-party resources, is a native REST API built into Drupal 8 itself provided by the RESTful web services suite of modules. This allows for fine-grained configuration of which resources should be available (nodes, taxonomy, users, etc.), what HTTP methods are allowed against those resources (e.g. GET, POST, PATCH, DELETE…), and which formats and authentication are used to access those resources. See the contributed REST UI module which provides an interface for this configuration. Then, for each allowed HTTP method you can also set permissions on which role(s) on your site may access the resources via that method. This allows anonymous users to GET but only administrators to POST, for example.

Once the various RESTful Web Services modules are configured properly, you can get a big clump of machine-readable data representing your site content, such as this:

...
    => Array
    (
        [0] => Array
            (
                [value] => Hello, world!
                [lang] => en
            )

    )
...
[body] => Array
    (
        [0] => Array
            (
                [value] => <p>This is my <strong>awesome</strong> article.</p>
                [format] => basic_html
                [summary] =>
            )

    )
...

What good is that? Plenty! Here's one example of retrieving information from Drupal 8 in JSON and displaying it in a standalone jQuery Mobile app:

jQuery Mobile app showing nodes from Drupal's front page.

Drupal 8 also ships with a new library called Guzzle with easy syntax to retrieve and post data to Drupal, or to talk to third-party web services, such as Twitter or Github.

And one final web services feature in Drupal 8 offered by the RESTFul web services module is the ability to add a "REST export" display to any view:

REST export

This means you can easily create JSON or XML feeds of custom dynamic content from your Drupal site, just by clicking them together!

Improved caching

And on a final happy note, caching in Drupal 8 has been improved across the board.

  • Entity cache module is now in core
  • Cache tags allow for much more granular cache clearing when content or settings are updated on the site.
  • All caching features such as CSS/JS aggregation are turned on out of the box, making Drupal 8 fast by default.

While we're still working hard on improving D8's performance overall, this extra caching should help most page loads come up lickety-split.

Whew! That's a wrap!

This article offered a taste of some of the under-the-hood code changes coming to Drupal 8. Join us next time, when we'll talk more in-depth look at major API changes in Drupal 8 and what they mean for you!

Bạn thấy bài viết này như thế nào?: 
Average: 4.1 (8 votes)
Ảnh của Tommy Tran

Tommy owner Express Magazine

Drupal Developer having 9+ year experience, implementation and having strong knowledge of technical specifications, workflow development. Ability to perform effectively and efficiently in team and individually. Always enthusiastic and interseted to study new technologies

  • Skype ID: tthanhthuy

Bình luận (0)

 

Add Comment

Filtered HTML

  • Các địa chỉ web và email sẽ tự động được chuyển sang dạng liên kết.
  • Các thẻ HTML được chấp nhận: <a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Tự động ngắt dòng và đoạn văn.

Plain text

  • No HTML tags allowed.
  • Các địa chỉ web và email sẽ tự động được chuyển sang dạng liên kết.
  • Tự động ngắt dòng và đoạn văn.
CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.

Tìm kiếm bất động sản

 

Advertisement

 

jobsora

Dich vu khu trung tphcm

Dich vu diet chuot tphcm

Dich vu diet con trung

Quảng Cáo Bài Viết

 
Xịt thuốc diệt côn trùng sai quy cách 2016

Xịt thuốc diệt côn trùng sai quy cách 2016

Dùng thuốc diệt côn trùng để diệt côn trùng gây bệnh hiện đang được nhiều người quan tâm trong điều kiện thời tiết nóng ẩm mưa nhiều hiện nay

Download Free Music and Lyric On Android Phones Through Music Download App

Download Free Music and Lyric On Android Phones Through Music Download App

The Music Download app for Android phones is simple tools that will enable you to download mp3 music.

7 cách để lọc, phân loại và tìm kiếm email hiệu quả

7 cách để lọc, phân loại và tìm kiếm email hiệu quả

Một hòm thư lộn xộn, không được sắp xếp gọn gàng sẽ gây khó khăn cho người dùng khi tìm email cần thiết.

Công ty diệt chuột T&C

 

Diet con trung