-
EBT Blocks 🧱
-
EPT Paragraphs 🆕
-
Resources & Support
- Drupal Book
- Blog
- Case Studies
- Drupal Documentation
- JSON Drop API Documentation
- Forum
- What's New
- Download Drupal
- Contact
Canvas Palette - Make it Colorful🎨
Canvas Palette - Drag in blocks, drop in a video, add a splash of color - no design degree required.
Extra Block Types (EBT) - New Layout Builder experience❗
Extra Block Types (EBT) - styled, customizable block types: Slideshows, Tabs, Cards, Accordions and many others. Built-in settings for background, DOM Box, javascript plugins. Experience the future of layout building today.
❗Extra Paragraph Types (EPT) - New Paragraphs experience
Extra Paragraph Types (EPT) - analogical paragraph based set of modules.
GLightbox is a pure javascript lightbox (Colorbox alternative without jQuery)❗
It can display images, iframes, inline content and videos with optional autoplay for YouTube, Vimeo and even self-hosted videos.
Theming the Pager
What is this nonsense?? To customize the pagination, I need to write a function interceptor and assemble an array there???? HOW IS THAT POSSIBLE??????
<br>
if ( $li_previous ) $items[] = array( 'class' => 'pager-previous', 'data' => $li_previous );
if ( $show_first && $li_first ) $items[] = array( 'class' => 'pager-first', 'data' => $li_first );
<br>
WHAT THE??? What if I want to change the entire structure??? Why do I even have to intercept functions and add my own arrays?? Couldn't it have been done simply? Just provide an array or object with fields, and then lay it out in the HTML file??? I'm completely shocked by DRUPAL. So I have to know what is being intercepted and what isn't. Moreover, I will also have to know which array to describe and for which moment of theming???
- Log in to post comments