class Basic in Pagerer 8
Same name and namespace in other branches
- 8.2 src/Plugin/pagerer/Basic.php \Drupal\pagerer\Plugin\pagerer\Basic
 
Basic pager style similar to Views' 'mini' pager.
By default presents current page out of total, plus links to previous/next page.
Plugin annotation
@PagererStyle(
  id = "basic",
  title = @Translation("Basic pager similar to Views mini pager"),
  short_title = @Translation("Basic"),
  help = @Translation("Presents current page out of total, plus links to previous/next page."),
  style_type = "base"
)
  Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\pagerer\Plugin\pagerer\PagererStyleBase implements ContainerFactoryPluginInterface, PluginFormInterface, PagererStyleInterface
- class \Drupal\pagerer\Plugin\pagerer\Basic
 
 
 - class \Drupal\pagerer\Plugin\pagerer\PagererStyleBase implements ContainerFactoryPluginInterface, PluginFormInterface, PagererStyleInterface
 
 - class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
 
Expanded class hierarchy of Basic
File
- src/
Plugin/ pagerer/ Basic.php, line 21  
Namespace
Drupal\pagerer\Plugin\pagererView source
class Basic extends PagererStyleBase {
  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    $config = parent::buildConfigurationForm($form, $form_state);
    unset($config['separators_container']);
    return $config;
  }
  /**
   * Return an empty pager render array.
   *
   * @return array
   *   Render array.
   */
  protected function buildPagerItems() {
    return [];
  }
}Members
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            Basic:: | 
                  public | function | 
            Form constructor. Overrides PagererStyleBase:: | 
                  |
| 
            Basic:: | 
                  protected | function | Return an empty pager render array. | |
| 
            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 | |
| 
            MessengerTrait:: | 
                  protected | property | The messenger. | 29 | 
| 
            MessengerTrait:: | 
                  public | function | Gets the messenger. | 29 | 
| 
            MessengerTrait:: | 
                  public | function | Sets the messenger. | |
| 
            PagererStyleBase:: | 
                  protected | property | The config factory. | |
| 
            PagererStyleBase:: | 
                  protected | property | The Pagerer pager object. | |
| 
            PagererStyleBase:: | 
                  protected | property | The PagererPreset object being configured. | |
| 
            PagererStyleBase:: | 
                  protected | property | The PagererPreset pane being configured. | |
| 
            PagererStyleBase:: | 
                  protected | property | Query parameters as requested by the theme call. | |
| 
            PagererStyleBase:: | 
                  protected | property | The config type plugins manager. | |
| 
            PagererStyleBase:: | 
                  protected | function | Render a 'no pages to display' text. | 1 | 
| 
            PagererStyleBase:: | 
                  public static | function | 
            Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: | 
                  |
| 
            PagererStyleBase:: | 
                  protected | function | Returns a translated textual element for pages/items/item ranges. | |
| 
            PagererStyleBase:: | 
                  protected | function | Gets a link/button item to first/previous/next/last link. | |
| 
            PagererStyleBase:: | 
                  protected | function | Returns a configuration element. | |
| 
            PagererStyleBase:: | 
                  protected | function | Gets a 'page' item in the pager. | |
| 
            PagererStyleBase:: | 
                  protected | function | Returns a translated textual element from the configuration. | |
| 
            PagererStyleBase:: | 
                  protected | function | Prepares input parameters for a JS enabled pager widget. | |
| 
            PagererStyleBase:: | 
                  public | function | 
            Prepares to render the pager. Overrides PagererStyleInterface:: | 
                  |
| 
            PagererStyleBase:: | 
                  public | function | Sets the current PagererPreset and pane being configured. | |
| 
            PagererStyleBase:: | 
                  public | function | 
            Sets the Pagerer pager to be rendered. Overrides PagererStyleInterface:: | 
                  |
| 
            PagererStyleBase:: | 
                  public | function | 
            Form submission handler. Overrides PluginFormInterface:: | 
                  |
| 
            PagererStyleBase:: | 
                  public | function | 
            Form validation handler. Overrides PluginFormInterface:: | 
                  |
| 
            PagererStyleBase:: | 
                  public | function | 
            Constructs a \Drupal\pagerer\Plugin\pagerer\PagererStyleBase object. Overrides PluginBase:: | 
                  |
| 
            PluginBase:: | 
                  protected | property | Configuration information passed into the plugin. | 1 | 
| 
            PluginBase:: | 
                  protected | property | The plugin implementation definition. | 1 | 
| 
            PluginBase:: | 
                  protected | property | The plugin_id. | |
| 
            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 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. | |
| 
            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. |