Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

ConfigTranslationEntityListBuilderInterface.php

Namespace

Drupal\config_translation\Controller

File

core/modules/config_translation/src/Controller/ConfigTranslationEntityListBuilderInterface.php

View source
<?php

namespace Drupal\config_translation\Controller;

use Drupal\Core\Entity\EntityListBuilderInterface;

/**
 * Defines an interface for configuration translation entity list builders.
 */
interface ConfigTranslationEntityListBuilderInterface extends EntityListBuilderInterface {
    
    /**
     * Sorts an array by value.
     *
     * @param array $a
     *   First item for comparison.
     * @param array $b
     *   Second item for comparison.
     *
     * @return int
     *   The comparison result for uasort().
     */
    public function sortRows($a, $b);
    
    /**
     * Sets the config translation mapper definition.
     *
     * @param mixed $mapper_definition
     *   The plugin definition of the config translation mapper.
     *
     * @return $this
     */
    public function setMapperDefinition($mapper_definition);

}

Interfaces

Title Deprecated Summary
ConfigTranslationEntityListBuilderInterface Defines an interface for configuration translation entity list builders.
RSS feed
Powered by Drupal