Browse Source

Making clean lean again

logicp 8 years ago
parent
commit
0f0e067a4b

+ 0 - 12
config/schema/heartbeat_type.schema.yml

@@ -1,12 +0,0 @@
-heartbeat8.heartbeat_type.*:
-  type: config_entity
-  label: 'Heartbeat type config'
-  mapping:
-    id:
-      type: string
-      label: 'ID'
-    label:
-      type: label
-      label: 'Label'
-    uuid:
-      type: string

+ 0 - 1
heartbeat8.module

@@ -7,7 +7,6 @@
 
 use Drupal\Core\Routing\RouteMatchInterface;
 use Drupal\Heartbeat8\Entity\Heartbeat;
-use Drupal\Heartbeat8\Entity\HeartbeatType;
 
 //TODO add constants (HEARTBEAT_NONE, HEARTBEAT_PRIVATE, HEARTBEAT_PUBLIC_TO_ADDRESSEE, HEARTBEAT_PUBLIC_TO_ALL_CONNECTED, HEARTBEAT_PUBLIC_TO_ALL)
 //TODO include Streams (Entities already added with use statements on lines 9-10)

+ 0 - 62
src/Entity/HeartbeatType.php

@@ -1,62 +0,0 @@
-<?php
-
-namespace Drupal\heartbeat8\Entity;
-
-use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
-
-/**
- * Defines the Heartbeat type entity.
- *
- * @ConfigEntityType(
- *   id = "heartbeat_type",
- *   label = @Translation("Heartbeat type"),
- *   handlers = {
- *     "list_builder" = "Drupal\heartbeat8\HeartbeatTypeListBuilder",
- *     "form" = {
- *       "add" = "Drupal\heartbeat8\Form\HeartbeatTypeForm",
- *       "edit" = "Drupal\heartbeat8\Form\HeartbeatTypeForm",
- *       "delete" = "Drupal\heartbeat8\Form\HeartbeatTypeDeleteForm"
- *     },
- *     "route_provider" = {
- *       "html" = "Drupal\heartbeat8\HeartbeatTypeHtmlRouteProvider",
- *     },
- *   },
- *   config_prefix = "heartbeat_type",
- *   admin_permission = "administer site configuration",
- *   bundle_of = "heartbeat",
- *   entity_keys = {
- *     "id" = "id",
- *     "label" = "label",
- *     "uuid" = "uuid"
- *   },
- *   links = {
- *     "canonical" = "/admin/structure/heartbeat_type/{heartbeat_type}",
- *     "add-form" = "/admin/structure/heartbeat_type/add",
- *     "edit-form" = "/admin/structure/heartbeat_type/{heartbeat_type}/edit",
- *     "delete-form" = "/admin/structure/heartbeat_type/{heartbeat_type}/delete",
- *     "collection" = "/admin/structure/heartbeat_type"
- *   }
- * )
- */
-class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInterface {
-
-  /**
-   * The Heartbeat type ID.
-   *
-   * @var string
-   */
-  protected $id;
-
-  /**
-   * The Heartbeat type label.
-   *
-   * @var string
-   */
-  protected $label;
-
-  /**
-   * @var string
-   */
-  protected $description;
-
-}

+ 0 - 13
src/Entity/HeartbeatTypeInterface.php

@@ -1,13 +0,0 @@
-<?php
-
-namespace Drupal\heartbeat8\Entity;
-
-use Drupal\Core\Config\Entity\ConfigEntityInterface;
-
-/**
- * Provides an interface for defining Heartbeat type entities.
- */
-interface HeartbeatTypeInterface extends ConfigEntityInterface {
-
-  // Add get/set methods for your configuration properties here.
-}

+ 0 - 53
src/Form/HeartbeatTypeDeleteForm.php

@@ -1,53 +0,0 @@
-<?php
-
-namespace Drupal\heartbeat8\Form;
-
-use Drupal\Core\Entity\EntityConfirmFormBase;
-use Drupal\Core\Form\FormStateInterface;
-use Drupal\Core\Url;
-
-/**
- * Builds the form to delete Heartbeat type entities.
- */
-class HeartbeatTypeDeleteForm extends EntityConfirmFormBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getQuestion() {
-    return $this->t('Are you sure you want to delete %name?', ['%name' => $this->entity->label()]);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getCancelUrl() {
-    return new Url('entity.heartbeat_type.collection');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getConfirmText() {
-    return $this->t('Delete');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function submitForm(array &$form, FormStateInterface $form_state) {
-    $this->entity->delete();
-
-    drupal_set_message(
-      $this->t('content @type: deleted @label.',
-        [
-          '@type' => $this->entity->bundle(),
-          '@label' => $this->entity->label(),
-        ]
-        )
-    );
-
-    $form_state->setRedirectUrl($this->getCancelUrl());
-  }
-
-}

+ 0 - 67
src/Form/HeartbeatTypeForm.php

@@ -1,67 +0,0 @@
-<?php
-
-namespace Drupal\heartbeat8\Form;
-
-use Drupal\Core\Entity\EntityForm;
-use Drupal\Core\Form\FormStateInterface;
-
-/**
- * Class HeartbeatTypeForm.
- *
- * @package Drupal\heartbeat8\Form
- */
-class HeartbeatTypeForm extends EntityForm {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function form(array $form, FormStateInterface $form_state) {
-    $form = parent::form($form, $form_state);
-
-    $heartbeat_type = $this->entity;
-    $form['label'] = [
-      '#type' => 'textfield',
-      '#title' => $this->t('Label'),
-      '#maxlength' => 255,
-      '#default_value' => $heartbeat_type->label(),
-      '#description' => $this->t("Label for the Heartbeat type."),
-      '#required' => TRUE,
-    ];
-
-    $form['id'] = [
-      '#type' => 'machine_name',
-      '#default_value' => $heartbeat_type->id(),
-      '#machine_name' => [
-        'exists' => '\Drupal\heartbeat8\Entity\HeartbeatType::load',
-      ],
-      '#disabled' => !$heartbeat_type->isNew(),
-    ];
-
-    /* You will need additional form elements for your custom properties. */
-
-    return $form;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function save(array $form, FormStateInterface $form_state) {
-    $heartbeat_type = $this->entity;
-    $status = $heartbeat_type->save();
-
-    switch ($status) {
-      case SAVED_NEW:
-        drupal_set_message($this->t('Created the %label Heartbeat type.', [
-          '%label' => $heartbeat_type->label(),
-        ]));
-        break;
-
-      default:
-        drupal_set_message($this->t('Saved the %label Heartbeat type.', [
-          '%label' => $heartbeat_type->label(),
-        ]));
-    }
-    $form_state->setRedirectUrl($heartbeat_type->toUrl('collection'));
-  }
-
-}

+ 0 - 59
src/HeartbeatTypeHtmlRouteProvider.php

@@ -1,59 +0,0 @@
-<?php
-
-namespace Drupal\heartbeat8;
-
-use Drupal\Core\Entity\EntityTypeInterface;
-use Drupal\Core\Entity\Routing\AdminHtmlRouteProvider;
-use Symfony\Component\Routing\Route;
-
-/**
- * Provides routes for Heartbeat type entities.
- *
- * @see Drupal\Core\Entity\Routing\AdminHtmlRouteProvider
- * @see Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider
- */
-class HeartbeatTypeHtmlRouteProvider extends AdminHtmlRouteProvider {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getRoutes(EntityTypeInterface $entity_type) {
-    $collection = parent::getRoutes($entity_type);
-
-    $entity_type_id = $entity_type->id();
-
-    if ($collection_route = $this->getCollectionRoute($entity_type)) {
-      $collection->add("entity.{$entity_type_id}.collection", $collection_route);
-    }
-
-    return $collection;
-  }
-
-  /**
-   * Gets the collection route.
-   *
-   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
-   *   The entity type.
-   *
-   * @return \Symfony\Component\Routing\Route|null
-   *   The generated route, if available.
-   */
-  protected function getCollectionRoute(EntityTypeInterface $entity_type) {
-    if ($entity_type->hasLinkTemplate('collection') && $entity_type->hasListBuilderClass()) {
-      $entity_type_id = $entity_type->id();
-      $route = new Route($entity_type->getLinkTemplate('collection'));
-      $route
-        ->setDefaults([
-          '_entity_list' => $entity_type_id,
-          // Make sure this is not a TranslatableMarkup object as the
-          // TitleResolver translates this string again.
-          '_title' => (string) $entity_type->getLabel(),
-        ])
-        ->setRequirement('_permission', $entity_type->getAdminPermission())
-        ->setOption('_admin_route', TRUE);
-
-      return $route;
-    }
-  }
-
-}

+ 0 - 32
src/HeartbeatTypeListBuilder.php

@@ -1,32 +0,0 @@
-<?php
-
-namespace Drupal\heartbeat8;
-
-use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
-use Drupal\Core\Entity\EntityInterface;
-
-/**
- * Provides a listing of Heartbeat type entities.
- */
-class HeartbeatTypeListBuilder extends ConfigEntityListBuilder {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function buildHeader() {
-    $header['label'] = $this->t('Heartbeat type');
-    $header['id'] = $this->t('Machine name');
-    return $header + parent::buildHeader();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function buildRow(EntityInterface $entity) {
-    $row['label'] = $entity->label();
-    $row['id'] = $entity->id();
-    // You probably want a few more properties here...
-    return $row + parent::buildRow($entity);
-  }
-
-}