You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\help\Attribute\HelpSection;
use Drupal\help\Plugin\HelpSection\HelpSectionPluginBase;
/**
* Provides the module topics list section for the help page.
*/
#[HelpSection(
id: 'profile_connect',
title: new TranslatableMarkup('Other resources at Stanford'),
weight: -99
)]
class ProfileConnectSection extends HelpSectionPluginBase {
use ProfileHelpTrait;
/**
* {@inheritdoc}
*/
public function listTopics() {
$help = '<p>' . $this->t('The main way the Stanford Drupal community communicates is through the mailing list. You can join this list to participate in the community discussion.') . '</p>';
$help .= self::getLinkString($this->t('Join the Drupallers community of practice'), 'https://mailman.stanford.edu/mailman/listinfo/drupallers');