You are here

NodeNid.php in ThemeKey 8

File

src/Plugin/PropertyAdmin/NodeNid.php
View source
<?php

/**
 * @file
 * Contains \Drupal\themekey\Plugin\Property\DrupalRouteName.
 */
namespace Drupal\themekey\Plugin\PropertyAdmin;

use Drupal\themekey\PropertyAdminDigitBase;

/**
 * Administers a 'node id' property.
 *
 * @Property(
 *   id = "node:nid",
 * )
 */
class NodeNid extends PropertyAdminDigitBase {

  /**
   * {@inheritdoc}
   */
  public function getPossibleValues() {
    return array();
  }

}

Classes

Namesort descending Description
NodeNid Administers a 'node id' property.