renamed plugin_id to id
parent
318e1d1efd
commit
81b16bb29f
|
@ -73,14 +73,14 @@ function node_example_views_data() {
|
|||
'title' => t('Quantity'),
|
||||
'help' => t('Quantity of items.'),
|
||||
'field' => array(
|
||||
'plugin_id' => 'numeric',
|
||||
'id' => 'numeric',
|
||||
'click sortable' => TRUE,
|
||||
),
|
||||
'filter' => array(
|
||||
'plugin_id' => 'numeric',
|
||||
'id' => 'numeric',
|
||||
),
|
||||
'sort' => array(
|
||||
'plugin_id' => 'standard',
|
||||
'id' => 'standard',
|
||||
),
|
||||
);
|
||||
|
||||
|
@ -90,17 +90,17 @@ function node_example_views_data() {
|
|||
'help' => t('Color of item.'),
|
||||
|
||||
'field' => array(
|
||||
'plugin_id' => 'standard',
|
||||
'id' => 'standard',
|
||||
'click sortable' => TRUE,
|
||||
),
|
||||
'filter' => array(
|
||||
'plugin_id' => 'string',
|
||||
'id' => 'string',
|
||||
),
|
||||
'argument' => array(
|
||||
'plugin_id' => 'string',
|
||||
'id' => 'string',
|
||||
),
|
||||
'sort' => array(
|
||||
'plugin_id' => 'standard',
|
||||
'id' => 'standard',
|
||||
),
|
||||
);
|
||||
|
||||
|
|
|
@ -706,9 +706,9 @@ function views_ui_nojs_submit($form, &$form_state) {
|
|||
function views_ui_wizard_form_validate($form, &$form_state) {
|
||||
$wizard = views_ui_get_wizard($form_state['values']['show']['wizard_key']);
|
||||
$manager = new ViewsPluginManager('wizard');
|
||||
$definition = $manager->getDefinition($wizard['plugin_id']);
|
||||
$definition = $manager->getDefinition($wizard['id']);
|
||||
$form_state['wizard'] = $wizard;
|
||||
$form_state['wizard_instance'] = $manager->createInstance($wizard['plugin_id'], $definition);
|
||||
$form_state['wizard_instance'] = $manager->createInstance($wizard['id'], $definition);
|
||||
$errors = $form_state['wizard_instance']->validate($form, $form_state);
|
||||
foreach ($errors as $name => $message) {
|
||||
form_set_error($name, $message);
|
||||
|
|
|
@ -88,8 +88,8 @@ function _views_data_process_entity_types(&$data) {
|
|||
/**
|
||||
* Fetch the plugin data from cache.
|
||||
*/
|
||||
function _views_fetch_plugin_data($type = NULL, $plugin_id = NULL, $reset = FALSE) {
|
||||
if (!$type && !$plugin_id) {
|
||||
function _views_fetch_plugin_data($type = NULL, $id = NULL, $reset = FALSE) {
|
||||
if (!$type && !$id) {
|
||||
$plugins = array();
|
||||
$plugin_types = array('access', 'argument', 'argument_default', 'argument_validator', 'cache', 'display_extender', 'display', 'exposed_form', 'localization', 'pager', 'query', 'row', 'style', 'wizard');
|
||||
foreach ($plugin_types as $plugin_type) {
|
||||
|
@ -101,11 +101,11 @@ function _views_fetch_plugin_data($type = NULL, $plugin_id = NULL, $reset = FALS
|
|||
|
||||
$manager = new ViewsPluginManager($type);
|
||||
|
||||
if (!$plugin_id) {
|
||||
if (!$id) {
|
||||
return $manager->getDefinitions();
|
||||
}
|
||||
else {
|
||||
return $manager->getDefinition($plugin_id);
|
||||
return $manager->getDefinition($id);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -16,11 +16,11 @@ use Drupal\views\Plugin\Type\ViewsPluginManager;
|
|||
*/
|
||||
function _views_create_plugin($type, $definition) {
|
||||
$manager = new ViewsPluginManager($type);
|
||||
$instance = $manager->createInstance($definition['plugin_id']);
|
||||
$instance = $manager->createInstance($definition['id']);
|
||||
|
||||
$instance->is_plugin = TRUE;
|
||||
$instance->plugin_type = $type;
|
||||
$instance->plugin_name = $definition['plugin_id'];
|
||||
$instance->plugin_name = $definition['id'];
|
||||
|
||||
$instance->set_definition($definition);
|
||||
|
||||
|
@ -35,7 +35,7 @@ function _views_create_plugin($type, $definition) {
|
|||
*/
|
||||
function _views_create_handler($type, $definition) {
|
||||
$manager = new ViewsPluginManager($type);
|
||||
$instance = $manager->createInstance($definition['plugin_id']);
|
||||
$instance = $manager->createInstance($definition['id']);
|
||||
|
||||
$instance->is_handler = TRUE;
|
||||
$instance->handler_type = $type;
|
||||
|
|
|
@ -44,7 +44,7 @@ class ViewsDiscovery extends AnnotatedClassDiscovery {
|
|||
}
|
||||
|
||||
// merge the new data in
|
||||
$definitions[$definition['plugin_id']] = $definition;
|
||||
$definitions[$definition['id']] = $definition;
|
||||
}
|
||||
|
||||
return $definitions;
|
||||
|
|
|
@ -11,9 +11,9 @@ use Drupal\views\ViewsObject;
|
|||
use Drupal\Component\Plugin\PluginBase;
|
||||
|
||||
abstract class Plugin extends PluginBase {
|
||||
public function __construct(array $configuration, $plugin_id) {
|
||||
public function __construct(array $configuration, $id) {
|
||||
$this->configuration = $configuration;
|
||||
$this->plugin_id = $plugin_id;
|
||||
$this->id = $id;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "none",
|
||||
* id = "none",
|
||||
* title = @Translation("None"),
|
||||
* help = @Translation("Will be available to all users."),
|
||||
* help_topic = "access-none"
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "permission",
|
||||
* id = "permission",
|
||||
* title = @Translation("Permission"),
|
||||
* help = @Translation("Access will be granted to users with the specified permission string."),
|
||||
* help_topic = "access-perm",
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "role",
|
||||
* id = "role",
|
||||
* title = @Translation("Role"),
|
||||
* help = @Translation("Access will be granted to users with any of the specified roles."),
|
||||
* help_topic = "access-role",
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "broken"
|
||||
* id = "broken"
|
||||
* )
|
||||
*/
|
||||
class Broken extends AreaPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "result"
|
||||
* id = "result"
|
||||
* )
|
||||
*/
|
||||
class Result extends AreaPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "text"
|
||||
* id = "text"
|
||||
* )
|
||||
*/
|
||||
class Text extends AreaPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "text_custom"
|
||||
* id = "text_custom"
|
||||
* )
|
||||
*/
|
||||
class TextCustom extends AreaPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "view"
|
||||
* id = "view"
|
||||
* )
|
||||
*/
|
||||
class View extends AreaPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "broken"
|
||||
* id = "broken"
|
||||
* )
|
||||
*/
|
||||
class Broken extends ArgumentPluginBase {
|
||||
|
|
|
@ -30,7 +30,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "date"
|
||||
* id = "date"
|
||||
* )
|
||||
*/
|
||||
class Date extends ArgumentPluginBase {
|
||||
|
|
|
@ -22,7 +22,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "formula"
|
||||
* id = "formula"
|
||||
* )
|
||||
*/
|
||||
class Formula extends ArgumentPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "groupby_numeric"
|
||||
* id = "groupby_numeric"
|
||||
* )
|
||||
*/
|
||||
class GroupByNumeric extends ArgumentPluginBase {
|
||||
|
|
|
@ -26,7 +26,7 @@ use Drupal\views\ManyToOneHelper;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "many_to_one"
|
||||
* id = "many_to_one"
|
||||
* )
|
||||
*/
|
||||
class ManyToOne extends ArgumentPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "null"
|
||||
* id = "null"
|
||||
* )
|
||||
*/
|
||||
class Null extends ArgumentPluginBase {
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "numeric"
|
||||
* id = "numeric"
|
||||
* )
|
||||
*/
|
||||
class Numeric extends ArgumentPluginBase {
|
||||
|
|
|
@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "string"
|
||||
* id = "string"
|
||||
* )
|
||||
*/
|
||||
class String extends ArgumentPluginBase {
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "fixed",
|
||||
* id = "fixed",
|
||||
* title = @Translation("Fixed")
|
||||
* )
|
||||
*/
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "php",
|
||||
* id = "php",
|
||||
* title = @Translation("PHP Code")
|
||||
* )
|
||||
*/
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "raw",
|
||||
* id = "raw",
|
||||
* title = @Translation("Raw value from URL")
|
||||
* )
|
||||
*/
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "numeric",
|
||||
* id = "numeric",
|
||||
* title = @Translation("Numeric")
|
||||
* )
|
||||
*/
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "php",
|
||||
* id = "php",
|
||||
* title = @Translation("PHP Code")
|
||||
* )
|
||||
*/
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "none",
|
||||
* id = "none",
|
||||
* title = @Translation("None"),
|
||||
* help = @Translation("No caching of Views data."),
|
||||
* help_topic = "cache-none"
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "time",
|
||||
* id = "time",
|
||||
* title = @Translation("Time-based"),
|
||||
* help = @Translation("Simple time-based caching of data."),
|
||||
* help_topic = "cache-time",
|
||||
|
|
|
@ -22,7 +22,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "attachment",
|
||||
* id = "attachment",
|
||||
* title = @Translation("Attachment"),
|
||||
* help = @Translation("Attachments added to other displays to achieve multiple views in the same view."),
|
||||
* theme = "views_view",
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "block",
|
||||
* id = "block",
|
||||
* title = @Translation("Block"),
|
||||
* help = @Translation("Display the view as a block."),
|
||||
* theme = "views_view",
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "default",
|
||||
* id = "default",
|
||||
* title = @Translation("Master"),
|
||||
* help = @Translation("Default settings for this view."),
|
||||
* theme = "views_view",
|
||||
|
|
|
@ -21,7 +21,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "embed",
|
||||
* id = "embed",
|
||||
* title = @Translation("Embed"),
|
||||
* help = @Translation("Provide a display which can be embedded using the views api."),
|
||||
* theme = "views_view",
|
||||
|
|
|
@ -21,7 +21,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "feed",
|
||||
* id = "feed",
|
||||
* title = @Translation("Feed"),
|
||||
* help = @Translation("Display the view as a feed, such as an RSS feed."),
|
||||
* uses_hook_menu = TRUE,
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "page",
|
||||
* id = "page",
|
||||
* title = @Translation("Page"),
|
||||
* help = @Translation("Display the view as a page, with a URL and menu links."),
|
||||
* uses_hook_menu = TRUE,
|
||||
|
|
|
@ -11,7 +11,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "default",
|
||||
* id = "default",
|
||||
* title = @Translation("Empty display extender"),
|
||||
* help = @Translation("Default settings for this view."),
|
||||
* enabled = FALSE,
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "basic",
|
||||
* id = "basic",
|
||||
* title = @Translation("Basic"),
|
||||
* help = @Translation("Basic exposed form"),
|
||||
* uses_options = TRUE,
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "input_required",
|
||||
* id = "input_required",
|
||||
* title = @Translation("Input required"),
|
||||
* help = @Translation("An exposed form that only renders a view if the form contains user input."),
|
||||
* uses_options = TRUE,
|
||||
|
|
|
@ -27,7 +27,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "boolean"
|
||||
* id = "boolean"
|
||||
* )
|
||||
*/
|
||||
class Boolean extends FieldPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "broken"
|
||||
* id = "broken"
|
||||
* )
|
||||
*/
|
||||
class Broken extends FieldPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "contextual_links"
|
||||
* id = "contextual_links"
|
||||
* )
|
||||
*/
|
||||
class ContextualLinks extends FieldPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "counter"
|
||||
* id = "counter"
|
||||
* )
|
||||
*/
|
||||
class Counter extends FieldPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "custom"
|
||||
* id = "custom"
|
||||
* )
|
||||
*/
|
||||
class Custom extends FieldPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "date"
|
||||
* id = "date"
|
||||
* )
|
||||
*/
|
||||
class Date extends FieldPluginBase {
|
||||
|
|
|
@ -23,7 +23,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "entity"
|
||||
* id = "entity"
|
||||
* )
|
||||
*/
|
||||
class Entity extends FieldPluginBase {
|
||||
|
|
|
@ -50,7 +50,7 @@ define('VIEWS_HANDLER_RENDER_TEXT_PHASE_EMPTY', 2);
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "standard"
|
||||
* id = "standard"
|
||||
* )
|
||||
*/
|
||||
class FieldPluginBase extends Handler {
|
||||
|
|
|
@ -15,7 +15,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "file_size"
|
||||
* id = "file_size"
|
||||
* )
|
||||
*/
|
||||
class FileSize extends FieldPluginBase {
|
||||
|
|
|
@ -20,7 +20,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "machine_name"
|
||||
* id = "machine_name"
|
||||
* )
|
||||
*/
|
||||
class MachineName extends FieldPluginBase {
|
||||
|
|
|
@ -23,7 +23,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "markup"
|
||||
* id = "markup"
|
||||
* )
|
||||
*/
|
||||
class Markup extends FieldPluginBase {
|
||||
|
|
|
@ -21,7 +21,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "math"
|
||||
* id = "math"
|
||||
* )
|
||||
*/
|
||||
class Math extends FieldPluginBase {
|
||||
|
|
|
@ -21,7 +21,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "numeric"
|
||||
* id = "numeric"
|
||||
* )
|
||||
*/
|
||||
class Numeric extends FieldPluginBase {
|
||||
|
|
|
@ -22,7 +22,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "prerender_list"
|
||||
* id = "prerender_list"
|
||||
* )
|
||||
*/
|
||||
class PrerenderList extends FieldPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "serialized"
|
||||
* id = "serialized"
|
||||
* )
|
||||
*/
|
||||
class Serialized extends FieldPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "time_interval"
|
||||
* id = "time_interval"
|
||||
* )
|
||||
*/
|
||||
class TimeInterval extends FieldPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "url"
|
||||
* id = "url"
|
||||
* )
|
||||
*/
|
||||
class Url extends FieldPluginBase {
|
||||
|
|
|
@ -16,7 +16,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "xss"
|
||||
* id = "xss"
|
||||
* )
|
||||
*/
|
||||
class Xss extends FieldPluginBase {
|
||||
|
|
|
@ -28,7 +28,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "boolean"
|
||||
* id = "boolean"
|
||||
* )
|
||||
*/
|
||||
class BooleanOperator extends FilterPluginBase {
|
||||
|
|
|
@ -23,7 +23,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "boolean_string"
|
||||
* id = "boolean_string"
|
||||
* )
|
||||
*/
|
||||
class BooleanOperatorString extends BooleanOperator {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "broken"
|
||||
* id = "broken"
|
||||
* )
|
||||
*/
|
||||
class Broken extends FilterPluginBase {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "combine"
|
||||
* id = "combine"
|
||||
* )
|
||||
*/
|
||||
class Combine extends String {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "date"
|
||||
* id = "date"
|
||||
* )
|
||||
*/
|
||||
class Date extends Numeric {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "equality"
|
||||
* id = "equality"
|
||||
* )
|
||||
*/
|
||||
class Equality extends FilterPluginBase {
|
||||
|
|
|
@ -39,7 +39,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "standard"
|
||||
* id = "standard"
|
||||
* )
|
||||
*/
|
||||
class FilterPluginBase extends Handler {
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "groupby_numeric"
|
||||
* id = "groupby_numeric"
|
||||
* )
|
||||
*/
|
||||
class GroupByNumeric extends Numeric {
|
||||
|
|
|
@ -21,7 +21,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "in_operator"
|
||||
* id = "in_operator"
|
||||
* )
|
||||
*/
|
||||
class InOperator extends FilterPluginBase {
|
||||
|
|
|
@ -23,7 +23,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "many_to_one"
|
||||
* id = "many_to_one"
|
||||
* )
|
||||
*/
|
||||
class ManyToOne extends InOperator {
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "numeric"
|
||||
* id = "numeric"
|
||||
* )
|
||||
*/
|
||||
class Numeric extends FilterPluginBase {
|
||||
|
|
|
@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "string"
|
||||
* id = "string"
|
||||
* )
|
||||
*/
|
||||
class String extends FilterPluginBase {
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "core",
|
||||
* id = "core",
|
||||
* title = @Translation("Core"),
|
||||
* help = @Translation("Use Drupal core t() function. Not recommended, as it doesn't support updates to existing strings."),
|
||||
* help_topic = "localization-core"
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "none",
|
||||
* id = "none",
|
||||
* title = @Translation("None"),
|
||||
* help = @Translation("Do not pass admin strings for translation."),
|
||||
* help_topic = "localization-none"
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "full",
|
||||
* id = "full",
|
||||
* title = @Translation("Paged output, full pager"),
|
||||
* short_title = @Translation("Full"),
|
||||
* help = @Translation("Paged output, full Drupal style"),
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "mini",
|
||||
* id = "mini",
|
||||
* title = @Translation("Paged output, mini pager"),
|
||||
* short_title = @Translation("Mini"),
|
||||
* help = @Translation("Use the mini pager output."),
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "none",
|
||||
* id = "none",
|
||||
* title = @Translation("Display all items"),
|
||||
* help = @Translation("Display all items that this view might find."),
|
||||
* help_topic = "pager-none",
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "some",
|
||||
* id = "some",
|
||||
* title = @Translation("Display a specified number of items"),
|
||||
* help = @Translation("Display a limited number items that this view might find."),
|
||||
* help_topic = "pager-some",
|
||||
|
|
|
@ -15,7 +15,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "views_query",
|
||||
* id = "views_query",
|
||||
* title = @Translation("SQL Query"),
|
||||
* help = @Translation("Query will be generated and run using the Drupal database API.")
|
||||
* )
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "broken"
|
||||
* id = "broken"
|
||||
* )
|
||||
*/
|
||||
class Broken extends RelationshipPluginBase {
|
||||
|
|
|
@ -63,7 +63,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @plugin(
|
||||
* plugin_id = "groupwise_max"
|
||||
* id = "groupwise_max"
|
||||
* )
|
||||
*/
|
||||
class GroupwiseMax extends RelationshipPluginBase {
|
||||
|
|
|
@ -44,7 +44,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "standard"
|
||||
* id = "standard"
|
||||
* )
|
||||
*/
|
||||
class RelationshipPluginBase extends Handler {
|
||||
|
|
|
@ -21,7 +21,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "fields",
|
||||
* id = "fields",
|
||||
* title = @Translation("Fields"),
|
||||
* help = @Translation("Displays the fields with an optional template."),
|
||||
* theme = "views_view_fields",
|
||||
|
|
|
@ -16,7 +16,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "rss_fields",
|
||||
* id = "rss_fields",
|
||||
* title = @Translation("Fields"),
|
||||
* help = @Translation("Display fields as RSS items."),
|
||||
* theme = "views_view_row_rss",
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "broken"
|
||||
* id = "broken"
|
||||
* )
|
||||
*/
|
||||
class Broken extends SortPluginBase {
|
||||
|
|
|
@ -16,7 +16,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
* equivalent based upon nearness.
|
||||
*
|
||||
* @Plugin(
|
||||
* plugin_id = "date"
|
||||
* id = "date"
|
||||
* )
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -13,7 +13,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
* Handler for GROUP BY on simple numeric fields.
|
||||
*
|
||||
* @Plugin(
|
||||
* plugin_id = "groupby_numeric"
|
||||
* id = "groupby_numeric"
|
||||
* )
|
||||
*/
|
||||
class GroupByNumeric extends SortPluginBase {
|
||||
|
|
|
@ -21,7 +21,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
* This is only really useful for the {menu_links} table.
|
||||
*
|
||||
* @Plugin(
|
||||
* plugin_id = "menu_hierarchy"
|
||||
* id = "menu_hierarchy"
|
||||
* )
|
||||
*/
|
||||
class MenuHierarchy extends SortPluginBase {
|
||||
|
|
|
@ -13,7 +13,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
* Handle a random sort.
|
||||
*
|
||||
* @Plugin(
|
||||
* plugin_id = "random"
|
||||
* id = "random"
|
||||
* )
|
||||
*/
|
||||
class Random extends SortPluginBase {
|
||||
|
|
|
@ -25,7 +25,7 @@ use Drupal\Core\Annotation\Plugin;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "standard"
|
||||
* id = "standard"
|
||||
* )
|
||||
*/
|
||||
class SortPluginBase extends Handler {
|
||||
|
|
|
@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "default",
|
||||
* id = "default",
|
||||
* title = @Translation("Unformatted list"),
|
||||
* help = @Translation("Displays rows one after another."),
|
||||
* theme = "views_view_unformatted",
|
||||
|
|
|
@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "default_summary",
|
||||
* id = "default_summary",
|
||||
* title = @Translation("List"),
|
||||
* help = @Translation("Displays the default summary as a list."),
|
||||
* theme = "views_view_summary",
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "grid",
|
||||
* id = "grid",
|
||||
* title = @Translation("Grid"),
|
||||
* help = @Translation("Displays rows in a grid."),
|
||||
* theme = "views_view_grid",
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "html_list",
|
||||
* id = "html_list",
|
||||
* title = @Translation("HTML List"),
|
||||
* help = @Translation("Displays rows as HTML list."),
|
||||
* theme = "views_view_list",
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "jump_menu",
|
||||
* id = "jump_menu",
|
||||
* title = @Translation("Jump menu"),
|
||||
* help = @Translation("Puts all of the results into a select box and allows the user to go to a different page based upon the results."),
|
||||
* theme = "views_view_jump_menu",
|
||||
|
|
|
@ -17,7 +17,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
*/
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "jump_menu_summary",
|
||||
* id = "jump_menu_summary",
|
||||
* title = @Translation("Jump menu"),
|
||||
* help = @Translation("Puts all of the results into a select box and allows the user to go to a different page based upon the results."),
|
||||
* theme = "views_view_summary_jump_menu",
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "rss",
|
||||
* id = "rss",
|
||||
* title = @Translation("RSS Feed"),
|
||||
* help = @Translation("Generates an RSS feed from a view."),
|
||||
* theme = "views_view_rss",
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "table",
|
||||
* id = "table",
|
||||
* title = @Translation("Table"),
|
||||
* help = @Translation("Displays rows in a table."),
|
||||
* theme = "views_view_table",
|
||||
|
|
|
@ -18,7 +18,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
|
||||
/**
|
||||
* @Plugin(
|
||||
* plugin_id = "unformatted_summary",
|
||||
* id = "unformatted_summary",
|
||||
* title = @Translation("Unformatted"),
|
||||
* help = @Translation("Displays the summary unformatted, with option for one after another or inline."),
|
||||
* theme = "views_view_summary_unformatted",
|
||||
|
|
|
@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
* Tests creating comment views with the wizard.
|
||||
*
|
||||
* @Plugin(
|
||||
* plugin_id = "comment",
|
||||
* id = "comment",
|
||||
* base_table = "comment",
|
||||
* created_column = "created",
|
||||
* title = @Translation("Comments"),
|
||||
|
|
|
@ -15,7 +15,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
* Tests creating managed files views with the wizard.
|
||||
*
|
||||
* @Plugin(
|
||||
* plugin_id = "file_managed",
|
||||
* id = "file_managed",
|
||||
* base_table = "file_managed",
|
||||
* created_column = "timestamp",
|
||||
* title = @Translation("Files"),
|
||||
|
|
|
@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
* Tests creating node views with the wizard.
|
||||
*
|
||||
* @Plugin(
|
||||
* plugin_id = "node",
|
||||
* id = "node",
|
||||
* base_table = "node",
|
||||
* created_column = "created",
|
||||
* title = @Translation("Content"),
|
||||
|
|
|
@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
* Tests creating node revision views with the wizard.
|
||||
*
|
||||
* @Plugin(
|
||||
* plugin_id = "node_revision",
|
||||
* id = "node_revision",
|
||||
* base_table = "node_revision",
|
||||
* created_column = "timestamp",
|
||||
* title = @Translation("Content revisions"),
|
||||
|
|
|
@ -15,7 +15,7 @@ use Drupal\Core\Annotation\Translation;
|
|||
* Tests creating taxonomy views with the wizard.
|
||||
*
|
||||
* @Plugin(
|
||||
* plugin_id = "taxonomy_term",
|
||||
* id = "taxonomy_term",
|
||||
* base_table = "taxonomy_term_data",
|
||||
* title = @Translation("Taxonomy terms"),
|
||||
* path_field = {
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue