In the realm of web development, particularly within the Drupal community, finding the right tools to simplify the process of building and managing websites is crucial. At Seed EM, we have identified a set of modules that have proven indispensable for the development of several of our projects.
Innovation
Drupal 6: How to set a form field created with CCK to disabled
Form fields are very easy to manipulate through a form_alter in a module, however when we are dealing with fields created with CCK (Content Construction Kit) the story is a bit different because these fields are created at the end of the form construction, in such a way that any change that we need to make must be done between the construction of the form and the rendering.
#after_build
In the hook_form_alter we need to define the function to be executed after the form is built using the special element #after_build (http://api.drupal.org/api/drupal/developer--topics--forms_api_reference…)
function mymodule_form_alter(&$form, &$form_state, $form_id){
...
$form['#after_build'][] = 'mymodule_after_build';
...
}
Drupal Con Nashville 2018 - Very Refreshing
Nashville Drupal Con has just ended; They are already vacating the Music City Center and it was a refreshing experience. One of the things that remains after talking to old friends and new acquaintances is that Drupal is stronger than ever.
Drupal Release Party Bogotá
We invite all Drupalers in Bogotá to celebrate the launch of Drupal 7 at Bogota Beer Company on 139th Street at 6 PM. We hope to gather as many people as possible and have a toast!
Preparing the environment to develop in Drupal 8
In this article we will show you how to prepare an environment to start developing in Drupal 8 and take advantage of the power of an IDE.
What's new in Drupal 7
Drupal, as a content management system (CMS) with wide global coverage, has evolved its platform towards version 7 and brings with it the possibility of generating content and proposals directly related to Web 3.0. The user community has contributed to updating and improving the interaction and usability of Drupal.
Time to upgrade to Drupal 9 and prepare for Drupal 10
Perhaps you feel that Drupal 8 came out not long ago and you are already being talked about upgrading to Drupal 9 which came out in the middle of last year and you are worried about the investment you will have to make for this upgrade.
Architectural Solutions in Drupal
Surely you have heard that Drupal is more than a traditional CMS, it is often said that it is like a Framework because from the base of the existing components you can create a whole universe of solutions that can even support the digital ecosystem of a company, in this article we want to share with you some generic architectures to which Drupal can adapt to support the solution you want to build, to write this article we have based on the paper published by Phase2 on its website.
Drupal 9 and the new branding that accompanies it
Drupal 9 is the materialization of what the community has been working on throughout Drupal 8 over all these years, a version that means the complete adoption of the model of continuous innovation and regular update cycles that have allowed that for the first time in the existence of the project, a major update does not imply a reconstruction and migration.
Google announces Summer of Code results , Drupal gets 20 projects! Add to Default shortcuts
This is great news for the Drupal community, Google has accepted 20 Drupal projects for the 2011 Google Summer of Code, representing an investment of $110,000 US by Google for these projects.