Skip to content
Snippets Groups Projects
Forked from project / recurring_events
400 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
NumberFieldInheritancePlugin.php 517 B
<?php

namespace Drupal\recurring_events\Plugin\FieldInheritance;

use Drupal\recurring_events\FieldInheritancePluginInterface;

/**
 * Number Inheritance plugin.
 *
 * @FieldInheritance(
 *   id = "number_inheritance",
 *   name = @Translation("Number Field Inheritance"),
 *   types = {
 *     "decimal",
 *     "float",
 *     "integer",
 *     "list_float",
 *     "list_integer"
 *   }
 * )
 */
class NumberFieldInheritancePlugin extends FieldInheritancePluginBase implements FieldInheritancePluginInterface {
}