You are here

MenuLink.php in Open Social 8.3

File

modules/custom/social_demo/src/Plugin/DemoContent/MenuLink.php
View source
<?php

namespace Drupal\social_demo\Plugin\DemoContent;

use Drupal\social_demo\DemoEntity;

/**
 * MenuLink Plugin for demo content.
 *
 * @DemoContent(
 *   id = "link",
 *   label = @Translation("Menu link"),
 *   source = "content/entity/menu-link.yml",
 *   entity_type = "menu_link_content"
 * )
 */
class MenuLink extends DemoEntity {

  /**
   * {@inheritdoc}
   */
  public function getEntry(array $item) {
    $entry = parent::getEntry($item);
    return $entry + [
      'title' => $item['title'],
      'link' => [
        'uri' => $item['link'],
      ],
      'menu_name' => $item['menu_name'],
      'expanded' => $item['expanded'],
      'weight' => isset($item['weight']) ? $item['weight'] : 0,
    ];
  }

}

Classes

Namesort descending Description
MenuLink MenuLink Plugin for demo content.