×
Error message
Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in
include_once() (line
343 of
/mnt/www/html/baltimoredc/docroot/sites/default/settings.php).
Proposed Sessions
Testing has become an integral part of the Drupal development process, but it's frequently centered around technical aspects and is only implemented toward the end of the project.
Shift left testing is the process of moving the testing phase left of its usual position in the delivery pipeline so that it occurs as close as possible to the build process. By proactively testing integrations early and often, you can isolate most defects sooner for faster remediation, resulting in more efficient projects that are higher quality.
jQuery is awesome, and has been a staple of Web development for so long, people rarely remember a time without it. But as useful as jQuery is, it’s highly cumbersome for certain kinds of interactive needs, from both a coding and an ongoing maintenance perspective.
I’ll discuss some use cases where jQuery can be replaced with a framework such as Vue.js, and how doing so can make development more efficient and maintainable.
The Sydney Opera House is one of the most beautiful and iconic buildings in the world. But did you know it was kind of a [email protected]? It was delivered ten years late and went 1357% over budget.
If that sounds like your last Drupal build, this session is for you. If you are involved in software development, chances are you’ve been involved in a [email protected] project where delivery dates slip, budgets are blown, and stress becomes unmanageable.
Drupal 8 introduces the concept of services to decouple reusable functionality and makes these services pluggable and replaceable by registering them with a service container. As a developer, it is best practice to access any of the services provided by Drupal via the service container to ensure the decoupled nature of these systems is respected.
My Session will cover below things:
1. What is services and dependency injection in Drupal 8.
2. Injecting Services in Normal way using arguments in services.yml with demo.
Autowiring allows you to manage services in the container with minimal configuration. It reads the type-hints on your constructor (or other methods) and automatically passes the correct services to each method.
The EventDispatcher component provides tools that allow your application components to communicate with each other by dispatching events and listening to them
Session Will Include Following:
1. What is Event Dispatcher ?
2. Why used over hooks in Drupal 8 ?
3. Advantages of EventDispatcher.