You are here

public function BrowserGroupItem::toArray in Paragraphs Browser 8

File

src/BrowserGroupItem.php, line 53

Class

BrowserGroupItem

Namespace

Drupal\paragraphs_browser

Code

public function toArray() {
  return array(
    'label' => $this
      ->getLabel(),
    'id' => $this
      ->getId(),
    'weight' => $this
      ->getWeight(),
  );
}