NodeNid.php in ThemeKey 8
Same filename in this branch
Namespace
Drupal\themekey\Plugin\PropertyAdminFile
src/Plugin/PropertyAdmin/NodeNid.phpView 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();
}
}