Replace HTML with render array in theme function.

Created on 29 July 2020, over 4 years ago
Updated 23 January 2025, 2 months ago

Problem/Motivation

Return render array instead of hard-coded HTML to allow altering.

I'm trying to integrate ShareThis with Cookie Content Blocker module

Steps to reproduce

See the return statement of the theme_sharethis($variables) function.

Proposed resolution

Replace this:

return '<div class="sharethis-wrapper">' . $st_spans . '</div>';

With this:

  return array(
    '#type' => 'html_tag',
    '#tag' => 'div',
    '#attributes' => array(
      'class' => 'sharethis-wrapper',
    ),
    '#content' => $st_spans,
  );

Remaining tasks

Create patch.

User interface changes

None.

API changes

None.

Data model changes

None.

Release notes snippet

None.

📌 Task
Status

Closed: outdated

Version

2.0

Component

Code

Created by

🇷🇴Romania reszli Târgu Mureș

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024