Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Drupal.org issue queue
Drupal.org issue queue
Security & Compliance
Security & Compliance
Dependency List
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
project
drupal
Commits
b343c571
Commit
b343c571
authored
Aug 04, 2014
by
webchick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2216539
by jhodgdon: Fill in @defgroup/topic docs for Views overview.
parent
d82eb50d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
8 deletions
+10
-8
core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php
...ugin/views/argument_default/ArgumentDefaultPluginBase.php
+2
-2
core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php
.../views/argument_validator/ArgumentValidatorPluginBase.php
+1
-1
core/modules/views/src/Plugin/views/cache/CachePluginBase.php
.../modules/views/src/Plugin/views/cache/CachePluginBase.php
+2
-3
core/modules/views/src/Plugin/views/field/FieldPluginBase.php
.../modules/views/src/Plugin/views/field/FieldPluginBase.php
+4
-1
core/modules/views/src/Plugin/views/style/StylePluginBase.php
.../modules/views/src/Plugin/views/style/StylePluginBase.php
+1
-1
No files found.
core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php
View file @
b343c571
...
...
@@ -17,8 +17,8 @@
* @{
* Plugins for argument defaults in Views.
*
* Argument default plugins provide default values for contextual filters.
*
This is
useful for blocks and other display types lacking a natural argument
* Argument default plugins provide default values for contextual filters.
This
*
can be
useful for blocks and other display types lacking a natural argument
* input. Examples are plugins to extract node and user IDs from the URL.
*
* Argument default plugins extend
...
...
core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php
View file @
b343c571
...
...
@@ -17,7 +17,7 @@
* @{
* Plugins for validating views contextual filters.
*
* Views argument validator plugins validate
contextual filters (argument
s) on
* Views argument validator plugins validate
arguments (contextual filter
s) on
* views. They can ensure arguments are valid, and even do transformations on
* the arguments. They can also provide replacement patterns for the view title.
* For example, the 'content' validator verifies verifies that the argument
...
...
core/modules/views/src/Plugin/views/cache/CachePluginBase.php
View file @
b343c571
...
...
@@ -14,10 +14,9 @@
/**
* @defgroup views_cache_plugins Views cache plugins
* @{
* Plugins to handle
the storage and loading of
Views caches.
* Plugins to handle Views caches.
*
* Cache plugins control the storage and loading of caches in Views, for
* both result and render caching.
* Cache plugins control how caching is done in Views.
*
* Cache plugins extend \Drupal\views\Plugin\views\cache\CachePluginBase.
* They must be annotated with \Drupal\views\Annotation\ViewsCache
...
...
core/modules/views/src/Plugin/views/field/FieldPluginBase.php
View file @
b343c571
...
...
@@ -33,8 +33,11 @@
* The following items can go into a hook_views_data() implementation in a
* field section to affect how the field handler will behave:
* - additional fields: An array of fields that should be added to the query.
* The array is in
the form of
:
* The array is in
one of these forms
:
* @code
* // Simple form, for fields within the same table.
* array('identifier' => fieldname)
* // Form for fields in a different table.
* array('identifier' => array('table' => tablename, 'field' => fieldname))
* @endcode
* As many fields as are necessary may be in this array.
...
...
core/modules/views/src/Plugin/views/style/StylePluginBase.php
View file @
b343c571
...
...
@@ -18,7 +18,7 @@
* @{
* Plugins that control how the collection of results is rendered in a view.
*
* Style plugins control a view is displayed. For the most part, they are
* Style plugins control
how
a view is displayed. For the most part, they are
* object wrappers around theme templates. Examples of styles include HTML
* lists, tables, full or teaser content views, etc.
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment