Drupal and Other CMS Systems Used by Polish Universities. The Droptica Report

Posted by Droptica - 22 Mar 2024 at 11:46 UTC
-

Drupal is a CMS that colleges from different countries eagerly use. According to a report by The Drop Times, up to 80% of the world's top 100 universities chose Drupal for at least one of their websites. We wanted to find out how this technology is used in Poland and what other content management systems are popular among Polish higher education institutions - both public and private. This report presents the results of our analysis. 

Categories: Planet Drupal

How to Implement Google Analytics In Drupal : All You Need To Know

Posted by LN Webworks - 22 Mar 2024 at 10:37 UTC

Google Analytics 4 has taken the world of web analytics by storm. It is an incredible tool that helps you understand how users interact with your business website. You can use these insights to deliver personalized experiences to your customers, enhance loyalty, and boost your revenue. If you have availed of Drupal services and run a Drupal-powered website, this blog will help you delve into how you can successfully combine Drupal and GA4 to accomplish phenomenal results. 

How to Combine GA4 With Your Drupal Website

Given the fantastic user insights provided by GA4, its combination with Drupal can take your business website on an upward spiral of growth. As Drupal is a cutting-edge content management system, its combination with GA4 can result in the creation of an incredible marketing strategy and improvement in your site’s performance. 

Categories: Planet Drupal

Maximizing Learning and Networking: Insights from DrupalCamp New Jersey

Posted by Acquia Developer Portal Blog - 22 Mar 2024 at 01:29 UTC
 Insights from DrupalCamp New Jersey

A DrupalCamp is a one- or two-day event that centers on the Drupal open source web content management system, and tends to bring together people from a geographical region. The goals are primarily, of course, knowledge sharing and increasing awareness of and helping to grow the Drupal community. It's not easy to do this without also increasing awareness and knowledge of the tools we all use along with Drupal as well, which makes the gatherings all the more valuable.

Categories: Planet Drupal

Florida DrupalCamp: Not just another Layout Builder article

Posted by ImageX - 21 Mar 2024 at 23:38 UTC
Avi

Avi Schwab, is a prolific contributor to Drupal, and one of the lead organizers of MidCamp, an annual gathering of the MidWest Drupal community in Chicago.

Categories: Planet Drupal

Replacing jQuery parents() with CSS :has()

Posted by Théodore 'nod_' Biadala - 21 Mar 2024 at 22:30 UTC

CSS has been on a roll for a few years and we keep getting great things to use. In the process of removing jQuery from Drupal core, we’re running into the problem of replacing jQuery .parents() method by something else. In certain conditions it is very easy to use CSS selectors to replace this method. Given the following HTML:

<html>
   <body>
      <main>
         <article id="article-19"></article>
      </main>
   </body>
</html>

To select all the parents of the article tag with jQuery you could do:

// This returns: main, body, html
$('#article-19').parents(); 

// This returns: body 
$('#article-19').parents('body');

The typical way of doing this is with a while loop looking at the parentElement and building the array manually. Now with :has() it becomes much easier:

// This returns: html, body, main
document.querySelectorAll(':has(#article-19)');

// To return the same order as jQuery:
Array.from(
  document.querySelectorAll(':has(#article-19)')
).reverse();

// This returns: body
document.querySelectorAll('body:has(#article-19)');

The only limitation is that a unique identifier needs to exist to build the CSS selector, that’s easy enough to generate if necessary.

Use the platform. When it’s good, it’s really good.

Categories: Planet Drupal

AstroJS and Drupal

Posted by Four Kitchens - 21 Mar 2024 at 20:53 UTC
Mike Goulding

Mike Goulding

Senior Drupal Engineer

Mike has been part of the Four Kitchens crew since 2018, where he works as a senior engineer and tech lead for a variety of Drupal and WordPress projects.

January 1, 1970

AstroJS logo

There are many different options available for the organization or team that decides it is time to decouple their Drupal site. There are frameworks that are designed for static site generation (SSG) and there are others that use server-side rendering (SSR), with many that claim to do both well.

React and NextJS have been popular options for a while now, and they are well-loved here at Four Kitchens as well. Another framework that is a little different from the above is Astro, and it may be worth considering.

Read more

Categories: Planet Drupal

Drupal is Missing a Comprehensive List of its Features!

Posted by The Drop Times - 21 Mar 2024 at 16:04 UTC
Delve into the latest initiative sparked by Andrew Kucharski to transform Drupal's visibility and user perception, addressing the need for a universally accessible features list. This discussion, enriched by insights from tech experts like Alex Dergachev, Ajith T., Dave Smyth, and Anoop John, highlights the community's drive towards showcasing Drupal's extensive capabilities, not just as a developer's framework but as a versatile platform for various business needs. Discover how this collective endeavor sets the stage for a new era in Drupal's market presence and user engagement.
Categories: Planet Drupal

Surprise Announcements from DrupalSouth Sydney 2024!

Posted by The Drop Times - 21 Mar 2024 at 16:04 UTC
Discover what's next for the Drupal community: Dive into the highlights from DrupalSouth Sydney 2024, including the announcement of DrupalCon Asia 2024 in Singapore and the future DrupalSouth Melbourne 2025. Stay tuned for a closer look at the events set to shape Drupal's future.
Categories: Planet Drupal

DrupalCon Portland 2024: Top Session Picks from Our Team

Posted by ImageX - 20 Mar 2024 at 18:21 UTC

Authored by: Nadiia Nykolaichuk 

“Join us this spring in the City of Roses, Portland!”

— the DrupalCon team

The best opportunity to grow your Drupal skills, plant the seeds of connection, and help the Drupal community flourish is just around the corner! This spring, the world’s biggest Drupal meetup is coming back to the City of Roses, which is one of the most famous nicknames for Portland, Oregon.

Categories: Planet Drupal

Skills Upgrade: Drupal 7 to Drupal 10 - a community story

Posted by Drupal Association blog - 20 Mar 2024 at 16:10 UTC

The Drupal Association has published this guest blog on behalf of author John Picozzi, in collaboration with Chat Hester, Stephen Cross, Nic Laflin, Mike Anello, and AmyJune Hineline.

“Never doubt that a small group of thoughtful, committed citizens can change the world; indeed, it's the only thing that ever has.”  - Margaret Mead

In my mind, the above quote distills the Drupal Community down to one sentence and perfectly describes its mission. Many in the community also use “Come for the code, stay for the community” to highlight that Drupal is more than just open-source software; it’s a community of committed citizens focused on helping each other, growing skills, and developing world-changing open-source software. As many are aware, Drupal 7 will reach end-of-life (EOL) at the end of this year. Many are working to move their sites to Drupal 10, while others are looking to “Level Up” their skills to work with the latest and greatest Drupal version. This story highlights the journey of one developer and how we as a community came together to help him (and hopefully many others) achieve Drupal 10 readiness. 

Our story starts with Drupal Slack and the following message from Chad Hester (chadhester). 

“Hey, I have an idea that I wanted to run by you… Since I'm looking for more contracting work, getting back in to Drupal development is on my radar. I haven't done development work since Drupal 7, though. I'm out of practice since ~2015. There are lots of people who learn Drupal for the first time, but I wonder if anyone has documented their experience re-learning Drupal. Perhaps that's something that could be good as a Talking Drupal mini-series. What do you think?”

Read more

Categories: Planet Drupal

March Drupal for Nonprofits Chat: NTC Wrap-Up and DrupalCon Planning

Posted by Nonprofit Drupal posts - 20 Mar 2024 at 15:44 UTC

Join us THURSDAY, March 21 at 1pm ET / 10am PT, for our regularly scheduled call to chat about all things Drupal and nonprofits. (Convert to your local time zone.)

This month we'll be giving a recap of last week's NTC, and an update on our plans for DrupalCon Portland, including the Nonprofit Summit and the recently announced discount for nonprofit attendees!

And we'll of course also have time to discuss anything else that's on our minds at the intersection of Drupal and nonprofits.  Got something specific you want to talk about? Feel free to share ahead of time in our collaborative Google doc: https://nten.org/drupal/notes!

All nonprofit Drupal devs and users, regardless of experience level, are always welcome on this call.

This free call is sponsored by NTEN.org and open to everyone. 

  • Join the call: https://us02web.zoom.us/j/81817469653

    • Meeting ID: 818 1746 9653
      Passcode: 551681

    • One tap mobile:
      +16699006833,,81817469653# US (San Jose)
      +13462487799,,81817469653# US (Houston)

    • Dial by your location:
      +1 669 900 6833 US (San Jose)
      +1 346 248 7799 US (Houston)
      +1 253 215 8782 US (Tacoma)
      +1 929 205 6099 US (New York)
      +1 301 715 8592 US (Washington DC)
      +1 312 626 6799 US (Chicago)

    • Find your local number: https://us02web.zoom.us/u/kpV1o65N

Read more

Categories: Planet Drupal

The Drupal Project Update: Highlights from DrupalSouth Sydney 2024

Posted by The Drop Times - 20 Mar 2024 at 15:09 UTC
Join us as we dive into the heart of DrupalSouth Sydney 2024, held at the iconic Sydney Masonic Centre. Discover the insights from Dries Buytaert's keynote on 'The Drupal Project Update,' the push for innovation and contributions, and the unifying power of the Drupal communities from Australia and New Zealand. Stay tuned for exclusive updates and takeaways.
Categories: Planet Drupal

DrupalSouth 2024 day 1 wrap-up

Posted by Salsa Digital - 20 Mar 2024 at 12:00 UTC
Dries Buytaert, Drupal: past, present and future Phillipa: Dries’s keynote gave a great insight into his journey, from coding at university to building Drupal as an enterprise-grade content management system (CMS). The focus for the future was on innovation (to keep Drupal as a CMS of choice) and marketing (to make sure people know about all of Drupal’s greatness).  Morgan Strong, ArtSEEker: using headless Drupal to power AI art recognition Phillipa: Morgan works in digital transformation at the Queensland  Art Gallery and Gallery of Modern Art (QAGOMA). Working with headless Drupal 10 and fast.ai he built a new tool for gallery patrons to interact with the art.
Categories: Planet Drupal

How To Upgrade From Drupal 7 to 10: Step By Step Guide

Posted by LN Webworks - 20 Mar 2024 at 11:47 UTC

Since its debut in 2010, Drupal 7 has provided a stable foundation for innumerable websites. But moving to a newer version—like Drupal 10—becomes crucial to guarantee security, performance, and access to the newest features as Drupal 7 approaches its end of life on January 5, 2025. 

Even though this Drupal upgrade has the potential to be revolutionary, it's important to know what features you might face while upgrading from Drupal 7 to 10. This will enable you to plan appropriately and gain a clear understanding of what to anticipate. 

Categories: Planet Drupal

How to Drupal 7 to 10 Upgrade: Step By Step Guide

Posted by LN Webworks - 20 Mar 2024 at 11:47 UTC

Since its debut in 2010, Drupal 7 has provided a stable foundation for innumerable websites. But moving to a newer version—like Drupal 10—becomes crucial to guarantee security, performance, and access to the newest features as Drupal 7 approaches its end of life on January 5, 2025. 

Even though this Drupal upgrade has the potential to be revolutionary, it's important to know what features you might face while upgrading from Drupal 7 to 10. This will enable you to plan appropriately and gain a clear understanding of what to anticipate. 

Categories: Planet Drupal

How to Drupal 7 to Drupal 10 Upgrade: Step By Step Guide

Posted by LN Webworks - 20 Mar 2024 at 11:47 UTC

Since its debut in 2010, Drupal 7 has provided a stable foundation for innumerable websites. But moving to a newer version—like Drupal 10—becomes crucial to guarantee security, performance, and access to the newest features as Drupal 7 approaches its end of life on January 5, 2025. 

Even though this Drupal upgrade has the potential to be revolutionary, it's important to know what features you might face while upgrading from Drupal 7 to 10. This will enable you to plan appropriately and gain a clear understanding of what to anticipate. 

Categories: Planet Drupal

Skills Upgrade #3

Posted by Talking Drupal - 20 Mar 2024 at 11:10 UTC

Welcome back to “Skills Upgrade” a Talking Drupal mini-series following the journey of a D7 developer learning D10. This is episode 3.

Topics
  • Review Chad's goals for the previous week

    • DDEV performance improvements
    • Install Drupal 10
    • Install drupal/core-dev
    • Configure and test phpcs
    • Test phpstan
    • settings.local.php
    • Install Devel module
  • Review Chad's questions

Read more

Categories: Planet Drupal

DrupalSouth Sydney 2024 Celebrates Excellence with the Splash Awards Winners

Posted by The Drop Times - 20 Mar 2024 at 09:04 UTC
The Drupal Splash Awards 2024 has been announced for all categories at the DrupalSouth Sydney 2024 event held at Sydney Masonic Centre. Read the article to know the winners.
Categories: Planet Drupal

Drupal Meets Symfony: A Match Made for API Innovation

Posted by qtatech.com blog - 20 Mar 2024 at 09:02 UTC
Drupal Meets Symfony: A Match Made for API Innovation kanapatrick Wed, 03/20/2024 - 10:02

In the rapidly evolving landscape of web development, the union of Drupal and Symfony represents a pioneering approach towards API innovation. Enter Drupal, known for its robust content management capabilities, and Symfony, renowned for its flexibility and scalability.

 A Match Made for API Innovation
Categories: Planet Drupal

9 Ways to Make the Most of the EvolveDrupal Summit

Posted by Evolving Web - 19 Mar 2024 at 17:34 UTC

Hi there! I’m Jasmin Merchant, a Front-End Developer at Evolving Web. A few years ago I knew very little about the open web. That all changed when I started working here and was plunged into ongoing learning opportunities.

The EvolveDrupal Ottawa summit in 2023 was a big part of my learning curve. Hosted by Evolving Web, the event was a chance to gain new knowledge about development, accessibility, UX, digital strategy, and many other relevant topics.

What’s more, it was a great introduction to networking. This was my first tech summit and I had only moved to Canada one week before, so I was nervous to say the least. But EvolveDrupal was a valuable experience that really built my confidence.

I’ve shared my takeaways in this article to help others who are planning to attend EvolveDrupal (or any tech event). Use these 9 tips to attend with confidence and make the most of it!

Before the Summit

1. Create your own schedule

My day at EvolveDrupal Ottawa started with coffee (because obviously!). I hung out in the foyer where I could chat to people as they arrived. I was looking forward to talks on Drupal, design, AI, and much more. Crucially, I had gone through the session list earlier and planned out my day.

Having your own schedule means you can pace yourself, attend the talks you're most interested in, and maximize your networking opportunities. Remember that EvolveDrupal has a wide range of sessions and many of them run in parallel, so it isn’t possible to attend all of them.

Read more

Categories: Planet Drupal

Pages

Subscribe with RSS Subscribe to Drupal.org aggregator