class File in Zircon Profile 8
Same name in this branch
- 8 vendor/symfony/validator/Constraints/File.php \Symfony\Component\Validator\Constraints\File
- 8 vendor/symfony/http-foundation/File/File.php \Symfony\Component\HttpFoundation\File\File
- 8 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File
- 8 core/lib/Drupal/Core/Render/Element/File.php \Drupal\Core\Render\Element\File
- 8 core/modules/file/src/Plugin/views/wizard/File.php \Drupal\file\Plugin\views\wizard\File
- 8 core/modules/file/src/Plugin/views/field/File.php \Drupal\file\Plugin\views\field\File
- 8 core/modules/file/src/Plugin/migrate/source/d6/File.php \Drupal\file\Plugin\migrate\source\d6\File
- 8 core/modules/file/src/Plugin/migrate/source/d7/File.php \Drupal\file\Plugin\migrate\source\d7\File
Same name and namespace in other branches
- 8.0 core/modules/file/src/Plugin/views/wizard/File.php \Drupal\file\Plugin\views\wizard\File
Tests creating managed files views with the wizard.
Plugin annotation
@ViewsWizard(
  id = "file_managed",
  base_table = "file_managed",
  title = @Translation("Files")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, StringTranslationTrait- class \Drupal\views\Plugin\views\PluginBase implements DependentPluginInterface, ContainerFactoryPluginInterface, ViewsPluginInterface- class \Drupal\views\Plugin\views\wizard\WizardPluginBase implements WizardInterface uses UrlGeneratorTrait- class \Drupal\file\Plugin\views\wizard\File
 
 
- class \Drupal\views\Plugin\views\wizard\WizardPluginBase implements WizardInterface uses UrlGeneratorTrait
 
- class \Drupal\views\Plugin\views\PluginBase implements DependentPluginInterface, ContainerFactoryPluginInterface, ViewsPluginInterface
 
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, StringTranslationTrait
Expanded class hierarchy of File
23 string references to 'File'
- DirectoryTest::testFileCheckDirectoryHandling in core/modules/ system/ src/ Tests/ File/ DirectoryTest.php 
- Test directory handling functions.
- DirectoryTest::testFileCheckLocalDirectoryHandling in core/modules/ system/ src/ Tests/ File/ DirectoryTest.php 
- Test local directory handling functions.
- DirectoryTest::testFileCreateNewFilepath in core/modules/ system/ src/ Tests/ File/ DirectoryTest.php 
- This will take a directory and path, and find a valid filepath that is not taken by another file.
- DirectoryTest::testFileDestination in core/modules/ system/ src/ Tests/ File/ DirectoryTest.php 
- This will test the filepath for a destination based on passed flags and whether or not the file exists.
- file.destination.schema.yml in core/modules/ file/ config/ schema/ file.destination.schema.yml 
- core/modules/file/config/schema/file.destination.schema.yml
File
- core/modules/ file/ src/ Plugin/ views/ wizard/ File.php, line 21 
- Contains \Drupal\file\Plugin\views\wizard\File.
Namespace
Drupal\file\Plugin\views\wizardView source
class File extends WizardPluginBase {
  /**
   * Set the created column.
   */
  protected $createdColumn = 'created';
  /**
   * {@inheritdoc}
   */
  protected function defaultDisplayOptions() {
    $display_options = parent::defaultDisplayOptions();
    // Add permission-based access control.
    $display_options['access']['type'] = 'perm';
    // Remove the default fields, since we are customizing them here.
    unset($display_options['fields']);
    /* Field: File: Name */
    $display_options['fields']['filename']['id'] = 'filename';
    $display_options['fields']['filename']['table'] = 'file_managed';
    $display_options['fields']['filename']['field'] = 'filename';
    $display_options['fields']['filename']['entity_type'] = 'file';
    $display_options['fields']['filename']['entity_field'] = 'filename';
    $display_options['fields']['filename']['label'] = '';
    $display_options['fields']['filename']['alter']['alter_text'] = 0;
    $display_options['fields']['filename']['alter']['make_link'] = 0;
    $display_options['fields']['filename']['alter']['absolute'] = 0;
    $display_options['fields']['filename']['alter']['trim'] = 0;
    $display_options['fields']['filename']['alter']['word_boundary'] = 0;
    $display_options['fields']['filename']['alter']['ellipsis'] = 0;
    $display_options['fields']['filename']['alter']['strip_tags'] = 0;
    $display_options['fields']['filename']['alter']['html'] = 0;
    $display_options['fields']['filename']['hide_empty'] = 0;
    $display_options['fields']['filename']['empty_zero'] = 0;
    $display_options['fields']['filename']['plugin_id'] = 'field';
    $display_options['fields']['filename']['type'] = 'file_link';
    return $display_options;
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| DependencySerializationTrait:: | protected | property | An array of service IDs keyed by property name used for serialization. | |
| DependencySerializationTrait:: | public | function | 1 | |
| DependencySerializationTrait:: | public | function | 2 | |
| File:: | protected | property | Set the created column. Overrides WizardPluginBase:: | |
| File:: | protected | function | Assembles the default display options for the view. Overrides WizardPluginBase:: | |
| PluginBase:: | protected | property | Configuration information passed into the plugin. | 2 | 
| PluginBase:: | public | property | Plugins's definition | |
| PluginBase:: | public | property | The display object this plugin is for. | |
| PluginBase:: | public | property | Options for this plugin will be held here. | |
| PluginBase:: | protected | property | The plugin implementation definition. | |
| PluginBase:: | protected | property | The plugin_id. | |
| PluginBase:: | protected | property | Stores the render API renderer. | 2 | 
| PluginBase:: | protected | property | Denotes whether the plugin has an additional options form. | 8 | 
| PluginBase:: | public | property | The top object of a view. | 1 | 
| PluginBase:: | public | function | Provide a form to edit options for this plugin. Overrides ViewsPluginInterface:: | 16 | 
| PluginBase:: | public | function | Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: | 20 | 
| PluginBase:: | public static | function | Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: | 50 | 
| PluginBase:: | protected | function | Information about options for all kinds of purposes will be held here. | 18 | 
| PluginBase:: | constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
| PluginBase:: | public | function | Clears a plugin. Overrides ViewsPluginInterface:: | 2 | 
| PluginBase:: | protected | function | Do the work to filter out stored options depending on the defined options. | |
| PluginBase:: | public | function | Filter out stored options depending on the defined options. Overrides ViewsPluginInterface:: | |
| PluginBase:: | public | function | Returns an array of available token replacements. Overrides ViewsPluginInterface:: | |
| PluginBase:: | public | function | Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: | |
| PluginBase:: | public | function | Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: | |
| PluginBase:: | public | function | Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: | |
| PluginBase:: | public | function | Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: | |
| PluginBase:: | public | function | Returns the plugin provider. Overrides ViewsPluginInterface:: | |
| PluginBase:: | protected | function | Returns the render API renderer. | 1 | 
| PluginBase:: | public | function | Adds elements for available core tokens to a form. Overrides ViewsPluginInterface:: | |
| PluginBase:: | public | function | Returns a string with any core tokens replaced. Overrides ViewsPluginInterface:: | |
| PluginBase:: | constant | Include entity row languages when listing languages. | ||
| PluginBase:: | constant | Include negotiated languages when listing languages. | ||
| PluginBase:: | public | function | Initialize the plugin. Overrides ViewsPluginInterface:: | 8 | 
| PluginBase:: | protected | function | Makes an array of languages, optionally including special languages. | |
| PluginBase:: | public | function | Return the human readable name of the display. Overrides ViewsPluginInterface:: | |
| PluginBase:: | public static | function | Moves form elements into fieldsets for presentation purposes. Overrides ViewsPluginInterface:: | |
| PluginBase:: | public static | function | Flattens the structure of form elements. Overrides ViewsPluginInterface:: | |
| PluginBase:: | public | function | Add anything to the query that we might need to. Overrides ViewsPluginInterface:: | 8 | 
| PluginBase:: | public static | function | Returns substitutions for Views queries for languages. | |
| PluginBase:: | protected | function | Fills up the options of the plugin with defaults. | |
| PluginBase:: | public | function | Handle any special handling on the validate form. Overrides ViewsPluginInterface:: | 16 | 
| PluginBase:: | public | function | Returns the summary of the settings in the display. Overrides ViewsPluginInterface:: | 6 | 
| PluginBase:: | public | function | Provide a full list of possible theme templates used by this style. Overrides ViewsPluginInterface:: | 1 | 
| PluginBase:: | public | function | Unpack options over our existing defaults, drilling down into arrays
so that defaults don't get totally blown away. Overrides ViewsPluginInterface:: | |
| PluginBase:: | public | function | Returns the usesOptions property. Overrides ViewsPluginInterface:: | 8 | 
| PluginBase:: | public | function | Validate that the plugin is correct and can be saved. Overrides ViewsPluginInterface:: | 5 | 
| PluginBase:: | public | function | Validate the options form. Overrides ViewsPluginInterface:: | 15 | 
| PluginBase:: | protected | function | Replaces Views' tokens in a given string. The resulting string will be sanitized with Xss::filterAdmin. | 1 | 
| PluginBase:: | constant | Query string to indicate the site default language. | ||
| StringTranslationTrait:: | protected | property | The string translation service. | |
| StringTranslationTrait:: | protected | function | Formats a string containing a count of items. | |
| StringTranslationTrait:: | protected | function | Returns the number of plurals supported by a given language. | |
| StringTranslationTrait:: | protected | function | Gets the string translation service. | |
| StringTranslationTrait:: | public | function | Sets the string translation service to use. | 2 | 
| StringTranslationTrait:: | protected | function | Translates a string to the current language or to a given language. | |
| UrlGeneratorTrait:: | protected | property | The url generator. | |
| UrlGeneratorTrait:: | protected | function | Returns the URL generator service. | |
| UrlGeneratorTrait:: | protected | function | Returns a redirect response object for the specified route. | |
| UrlGeneratorTrait:: | public | function | Sets the URL generator service. | |
| UrlGeneratorTrait:: | protected | function | Generates a URL or path for a specific route based on the given parameters. | |
| WizardPluginBase:: | protected | property | The available store criteria. | |
| WizardPluginBase:: | protected | property | The base table connected with the wizard. | |
| WizardPluginBase:: | protected | property | Contains the information from entity_get_info of the $entity_type. | |
| WizardPluginBase:: | protected | property | The entity type connected with the wizard. | |
| WizardPluginBase:: | protected | property | Views items configuration arrays for filters added by the wizard. | 4 | 
| WizardPluginBase:: | protected | property | Default values for filters. | |
| WizardPluginBase:: | protected | property | Views items configuration arrays for sorts added by the wizard. | |
| WizardPluginBase:: | protected | property | An array of validated view objects, keyed by a hash. | |
| WizardPluginBase:: | protected | function | Adds the array of display options to the view, with appropriate overrides. | |
| WizardPluginBase:: | protected | function | Alters the full array of display options before they are added to the view. | |
| WizardPluginBase:: | protected | function | Retrieves the block display options. | 1 | 
| WizardPluginBase:: | protected | function | Builds an array of display options for the view. | |
| WizardPluginBase:: | protected | function | Builds the form structure for selecting the view's filters. | 1 | 
| WizardPluginBase:: | public | function | Form callback to build other elements in the "show" form. Overrides WizardInterface:: | |
| WizardPluginBase:: | protected | function | Adds the style options to the wizard form. | |
| WizardPluginBase:: | protected | function | Builds the form structure for selecting the view's sort order. | |
| WizardPluginBase:: | public | function | Creates a view from values that have already been validated. Overrides WizardInterface:: | |
| WizardPluginBase:: | protected | function | Retrieves all filter information used by the default display. | |
| WizardPluginBase:: | protected | function | Retrieves filter information based on user input for the default display. | 1 | 
| WizardPluginBase:: | protected | function | Retrieves all sort information used by the default display. | |
| WizardPluginBase:: | protected | function | Retrieves sort information based on user input for the default display. | |
| WizardPluginBase:: | public | function | Gets the availableSorts property. | 1 | 
| WizardPluginBase:: | public | function | Gets the createdColumn property. | |
| WizardPluginBase:: | public | function | Gets the filters property. | |
| WizardPluginBase:: | public static | function | Gets the current value of a #select element, from within a form constructor function. | |
| WizardPluginBase:: | public | function | Gets the sorts property. | |
| WizardPluginBase:: | protected | function | Instantiates a view object from form values. | |
| WizardPluginBase:: | protected | function | Retrieves the page display options. | 1 | 
| WizardPluginBase:: | protected | function | Retrieves the feed display options. | |
| WizardPluginBase:: | protected | function | Retrieves the REST export display options from the submitted form values. | |
| WizardPluginBase:: | protected | function | Retrieves a validated view for a form submission. | |
| WizardPluginBase:: | protected | function | Retrieves row style plugin names. | 3 | 
| WizardPluginBase:: | protected | function | Sets options for a display and makes them the default options if possible. | |
| WizardPluginBase:: | protected | function | Sets options for a display, inheriting from the defaults when possible. | |
| WizardPluginBase:: | protected | function | Stores a validated view from a form submission. | |
| WizardPluginBase:: | public | function | Implements Drupal\views\Plugin\views\wizard\WizardInterface::validate(). Overrides WizardInterface:: | |
| WizardPluginBase:: | public | function | Constructs a WizardPluginBase object. Overrides PluginBase:: | 
