You are here

Node.php in Form mode manager 8.2

Same filename and directory in other branches
  1. 8 src/Plugin/EntityRoutingMap/Node.php

File

src/Plugin/EntityRoutingMap/Node.php
View source
<?php

namespace Drupal\form_mode_manager\Plugin\EntityRoutingMap;

use Drupal\form_mode_manager\EntityRoutingMapBase;

/**
 * Class Node.
 *
 * @EntityRoutingMap(
 *   id = "node",
 *   label = @Translation("Node Routes properties"),
 *   targetEntityType = "node",
 *   defaultFormClass = "default",
 *   editFormClass = "edit",
 *   operations = {
 *     "add_form" = "node.add",
 *     "edit_form" = "entity.node.edit_form",
 *     "add_page" = "node.add_page"
 *   }
 * )
 */
class Node extends EntityRoutingMapBase {

}

Classes

Namesort descending Description
Node Class Node.