Gets the definition of a configuration option.
@todo: This needs to go into an interface.
array The typed data definition describing the configuration option, or FALSE if the option does not exist.
public function getConfigDefinition($key) {
$definition = $this
->getPluginDefinition();
if (!empty($definition['configuration'][$key])) {
return $definition['configuration'][$key];
}
return FALSE;
}