abstract class ParserBase in Feeds 8.3
Base class for Feeds parsers.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait- class \Drupal\feeds\Plugin\Type\PluginBase implements FeedsPluginInterface uses DependencyTrait- class \Drupal\feeds\Feeds\Parser\ParserBase implements MappingPluginFormInterface, ParserInterface
 
 
- class \Drupal\feeds\Plugin\Type\PluginBase implements FeedsPluginInterface uses DependencyTrait
 
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of ParserBase
File
- src/Feeds/ Parser/ ParserBase.php, line 14 
Namespace
Drupal\feeds\Feeds\ParserView source
abstract class ParserBase extends PluginBase implements ParserInterface, MappingPluginFormInterface {
  /**
   * Returns the label for single source.
   *
   * @return \Drupal\Core\StringTranslation\TranslatableMarkup|null
   *   A translated string if the source has a special name. Null otherwise.
   */
  protected function configSourceLabel() {
    return NULL;
  }
  /**
   * Returns the description for single source.
   *
   * @return \Drupal\Core\StringTranslation\TranslatableMarkup|null
   *   A translated string if there's a description. Null otherwise.
   */
  protected function configSourceDescription() {
    return NULL;
  }
  /**
   * {@inheritdoc}
   */
  public function mappingFormAlter(array &$form, FormStateInterface $form_state) {
    // Override the label for adding new sources, so it is more clear what the
    // source value represents.
    $source_label = $this
      ->configSourceLabel();
    $description = $this
      ->configSourceDescription();
    if ($source_label || $description) {
      foreach (Element::children($form['mappings']) as $i) {
        if (!isset($form['mappings'][$i]['map'])) {
          continue;
        }
        foreach (Element::children($form['mappings'][$i]['map']) as $subtarget) {
          if ($source_label) {
            $form['mappings'][$i]['map'][$subtarget]['select']['#options']['__new'] = $this
              ->t('New @label...', [
              '@label' => $source_label,
            ]);
          }
          if ($description) {
            $form['mappings'][$i]['map'][$subtarget]['__new']['value']['#description'] = $description;
          }
        }
      }
    }
  }
  /**
   * {@inheritdoc}
   */
  public function mappingFormValidate(array &$form, FormStateInterface $form_state) {
  }
  /**
   * {@inheritdoc}
   */
  public function mappingFormSubmit(array &$form, FormStateInterface $form_state) {
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| DependencySerializationTrait:: | protected | property | An array of entity type IDs keyed by the property name of their storages. | |
| DependencySerializationTrait:: | protected | property | An array of service IDs keyed by property name used for serialization. | |
| DependencySerializationTrait:: | public | function | 1 | |
| DependencySerializationTrait:: | public | function | 2 | |
| DependencyTrait:: | protected | property | The object's dependencies. | |
| DependencyTrait:: | protected | function | Adds multiple dependencies. | |
| DependencyTrait:: | protected | function | Adds a dependency. | |
| MessengerTrait:: | protected | property | The messenger. | 29 | 
| MessengerTrait:: | public | function | Gets the messenger. | 29 | 
| MessengerTrait:: | public | function | Sets the messenger. | |
| ParserBase:: | protected | function | Returns the description for single source. | 1 | 
| ParserBase:: | protected | function | Returns the label for single source. | 1 | 
| ParserBase:: | public | function | Alter mapping form. Overrides MappingPluginFormInterface:: | |
| ParserBase:: | public | function | Submit handler for the mapping form. Overrides MappingPluginFormInterface:: | |
| ParserBase:: | public | function | Validate handler for the mapping form. Overrides MappingPluginFormInterface:: | |
| ParserInterface:: | public | function | Declare the possible mapping sources that this parser produces. | 5 | 
| ParserInterface:: | public | function | Parses content returned by fetcher. | 5 | 
| PluginBase:: | protected | property | Configuration information passed into the plugin. | 1 | 
| PluginBase:: | protected | property | The importer this plugin is working for. | |
| PluginBase:: | protected | property | The link generator. | |
| PluginBase:: | protected | property | The plugin implementation definition. | 1 | 
| PluginBase:: | protected | property | The plugin_id. | |
| PluginBase:: | protected | property | The url generator. | |
| PluginBase:: | public | function | Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: | 2 | 
| PluginBase:: | private | function | Returns the service container. | |
| PluginBase:: | public | function | Gets default configuration for this plugin. Overrides ConfigurableInterface:: | 7 | 
| PluginBase:: | public | function | Returns default feed configuration. Overrides FeedsPluginInterface:: | 3 | 
| PluginBase:: | constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
| PluginBase:: | public | function | Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: | |
| PluginBase:: | public | function | Gets this plugin's configuration. Overrides ConfigurableInterface:: | |
| 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:: | 3 | 
| PluginBase:: | public | function | Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: | |
| PluginBase:: | public | function | Determines if the plugin is configurable. | |
| PluginBase:: | protected | function | Renders a link to a route given a route name and its parameters. | |
| PluginBase:: | protected | function | Returns the link generator service. | |
| PluginBase:: | public | function | A feed is being deleted. | 3 | 
| PluginBase:: | public | function | A feed is being saved. | |
| PluginBase:: | public | function | The feed type is being deleted. | 1 | 
| PluginBase:: | public | function | The feed type is being saved. | 1 | 
| PluginBase:: | public | function | Returns the type of plugin. Overrides FeedsPluginInterface:: | |
| PluginBase:: | public | function | Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: | 1 | 
| PluginBase:: | protected | function | Generates a URL or path for a specific route based on the given parameters. | |
| PluginBase:: | protected | function | Returns the URL generator service. | |
| PluginBase:: | public | function | Constructs a PluginBase object. Overrides PluginBase:: | 4 | 
| StringTranslationTrait:: | protected | property | The string translation service. | 1 | 
| 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. | 
