public function MailchimpSignupListBuilder::buildRow in Mailchimp 8
Same name and namespace in other branches
- 2.x modules/mailchimp_signup/src/Controller/MailchimpSignupListBuilder.php \Drupal\mailchimp_signup\Controller\MailchimpSignupListBuilder::buildRow()
Builds a row for an entity in the entity listing.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list.
Return value
array A render array structure of fields for this entity.
Overrides EntityListBuilder::buildRow
See also
\Drupal\Core\Entity\EntityListBuilder::render()
File
- modules/
mailchimp_signup/ src/ Controller/ MailchimpSignupListBuilder.php, line 30
Class
- MailchimpSignupListBuilder
- Provides a listing of MailchimpSignups.
Namespace
Drupal\mailchimp_signup\ControllerCode
public function buildRow(EntityInterface $entity) {
global $base_url;
$block_url = Url::fromRoute('block.admin_display');
$page_url = Url::fromUri($base_url . '/' . $entity->settings['path']);
$block_mode = [
'#title' => $this
->t('Block'),
'#type' => 'link',
'#url' => $block_url,
];
$page_mode = [
'#title' => $this
->t('Page'),
'#type' => 'link',
'#url' => $page_url,
];
$modes = NULL;
$mc_lists = mailchimp_get_lists();
switch ($entity->mode) {
case MAILCHIMP_SIGNUP_BLOCK:
$modes = $block_mode;
break;
case MAILCHIMP_SIGNUP_PAGE:
$modes = $page_mode;
break;
case MAILCHIMP_SIGNUP_BOTH:
$modes = [
'block_link' => $block_mode,
'separator' => [
'#markup' => ' and ',
],
'page_link' => $page_mode,
];
break;
}
$list_labels = [];
foreach ($entity->mc_lists as $list_id) {
if (!empty($list_id) && isset($mc_lists[$list_id])) {
$list_url = Url::fromUri('https://admin.mailchimp.com/lists/dashboard/overview?id=' . $mc_lists[$list_id]->id, [
'attributes' => [
'target' => '_blank',
],
]);
$list_link = [
// phpcs:ignore
'#title' => $this
->t($mc_lists[$list_id]->name),
// phpcs:enable
'#type' => 'link',
'#url' => $list_url,
];
$list_labels[] = $list_link;
$list_labels[] = [
'#markup' => ', ',
];
}
}
// Remove the last comma from the $list_labels array.
array_pop($list_labels);
$row['label'] = "{$entity->label()} (Machine name: {$entity->id()})";
$row['display_modes']['data'] = $modes;
$row['lists']['data'] = $list_labels;
return $row + parent::buildRow($entity);
}