class ViewmodepagePattern in View Mode Page 8.3
Same name and namespace in other branches
- 4.0.x src/Entity/ViewmodepagePattern.php \Drupal\view_mode_page\Entity\ViewmodepagePattern
- 3.2.x src/Entity/ViewmodepagePattern.php \Drupal\view_mode_page\Entity\ViewmodepagePattern
Defines the Viewmodepage pattern entity.
Plugin annotation
@ConfigEntityType(
id = "view_mode_page_pattern",
label = @Translation("Viewmodepage pattern"),
handlers = {
"list_builder" = "Drupal\view_mode_page\Form\PatternListBuilder",
"form" = {
"default" = "Drupal\view_mode_page\Form\PatternEditForm",
"delete" = "Drupal\Core\Entity\EntityDeleteForm"
},
"route_provider" = {
"html" = "Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider",
},
},
config_prefix = "pattern",
admin_permission = "administer view_mode_page",
entity_keys = {
"id" = "id",
"label" = "label",
"uuid" = "uuid",
"weight" = "weight"
},
config_export = {
"id",
"label",
"type",
"pattern",
"view_mode",
"selection_criteria",
"selection_logic",
"weight",
"relationships"
},
lookup_keys = {
"type"
},
links = {
"collection" = "/admin/config/search/view-mode-page",
"edit-form" = "/admin/config/search/view-mode-page/{view_mode_page_pattern}",
"delete-form" = "/admin/config/search/view-mode-page/{view_mode_page_pattern}/delete"
}
)
Hierarchy
- class \Drupal\Core\Entity\EntityBase implements EntityInterface uses RefinableCacheableDependencyTrait, DependencySerializationTrait
- class \Drupal\Core\Config\Entity\ConfigEntityBase implements ConfigEntityInterface uses SynchronizableEntityTrait, PluginDependencyTrait
- class \Drupal\view_mode_page\Entity\ViewmodepagePattern implements ViewmodepagePatternInterface
- class \Drupal\Core\Config\Entity\ConfigEntityBase implements ConfigEntityInterface uses SynchronizableEntityTrait, PluginDependencyTrait
Expanded class hierarchy of ViewmodepagePattern
File
- src/
Entity/ ViewmodepagePattern.php, line 59
Namespace
Drupal\view_mode_page\EntityView source
class ViewmodepagePattern extends ConfigEntityBase implements ViewmodepagePatternInterface {
/**
* The Viewmodepage pattern ID.
*
* @var string
*/
protected $id;
/**
* The Viewmodepage pattern label.
*
* @var string
*/
protected $label;
/**
* The pattern type.
*
* A string denoting the type of view_mode_page pattern this is. For a
* node path this would be 'node', for users it would be 'user', and so on.
* This allows for arbitrary non-entity patterns to be possible if applicable.
*
* @var string
*/
protected $type;
/**
* The default single lazy plugin collection.
*
* @var \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection
*/
protected $aliasTypeCollection;
/**
* A string for path processing.
*
* @var string
*/
protected $pattern;
/**
* A string denoting the type of view_mode is used for rendering.
*
* @var string
*/
protected $view_mode;
/**
* The plugin configuration for the selection criteria condition plugins.
*
* @var array
*/
protected $selection_criteria = [];
/**
* The selection logic for this pattern entity (either 'and' or 'or').
*
* @var string
*/
protected $selection_logic = 'and';
/**
* The weight for this position.
*
* @var int
*/
protected $weight = 0;
/**
* The relationships.
*
* @var array[]
* Keys are context tokens, and values are arrays with the following keys:
* - label (string|null, optional): The human-readable label of this
* relationship.
*/
protected $relationships = [];
/**
* The plugin collection that holds the selection criteria condition plugins.
*
* @var \Drupal\Component\Plugin\LazyPluginCollection
*/
protected $selectionConditionCollection;
/**
* {@inheritdoc}
*
* Not using core's default logic around ConditionPluginCollection since it
* incorrectly assumes no condition will ever be applied twice.
*/
public function preSave(EntityStorageInterface $storage) {
parent::preSave($storage);
$criteria = [];
foreach ($this
->getSelectionConditions() as $id => $condition) {
$criteria[$id] = $condition
->getConfiguration();
}
$this->selection_criteria = $criteria;
// Clear the cache.
\Drupal::service('cache.data')
->deleteAll();
}
/**
* {@inheritdoc}
*/
public static function postDelete(EntityStorageInterface $storage, array $entities) {
parent::postDelete($storage, $entities);
// Clear the cache.
\Drupal::service('cache.data')
->deleteAll();
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
parent::calculateDependencies();
$this
->calculatePluginDependencies($this
->getAliasType());
foreach ($this
->getSelectionConditions() as $instance) {
$this
->calculatePluginDependencies($instance);
}
return $this
->getDependencies();
}
/**
* {@inheritdoc}
*/
public function getPattern() {
return $this->pattern;
}
/**
* {@inheritdoc}
*/
public function getPatternRegex() {
$pattern = $this
->getPattern();
$pattern = preg_replace('!/+!', '/', $pattern);
$pattern = trim($pattern, '/');
$patternArray = explode('/', $pattern);
$patternRegex = '!^';
foreach ($patternArray as $patternPart) {
if ($patternPart == '%') {
$patternRegex .= '/(.*)';
}
else {
$patternRegex .= '/' . preg_quote($patternPart, '!');
}
}
$patternRegex .= '$!';
return $patternRegex;
}
/**
* {@inheritdoc}
*/
public function setPattern($pattern) {
$this->pattern = $pattern;
return $this;
}
/**
* {@inheritdoc}
*/
public function getViewMode() {
return $this->view_mode;
}
/**
* {@inheritdoc}
*/
public function getViewModeLabel() {
$view_mode = $this
->getViewMode();
if ($entity_type_id = $this
->getAliasType()
->getDerivativeId()) {
/** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $entity_display_repository */
$entity_display_repository = \Drupal::service('entity_display.repository');
$view_modes = $entity_display_repository
->getViewModeOptions($entity_type_id);
if (!empty($view_modes[$view_mode])) {
return $view_modes[$view_mode];
}
}
return $view_mode;
}
/**
* {@inheritdoc}
*/
public function getType() {
return $this->type;
}
/**
* {@inheritdoc}
*/
public function getAliasType() {
if (!$this->aliasTypeCollection) {
$this->aliasTypeCollection = new DefaultSingleLazyPluginCollection(\Drupal::service('view_mode_page.manager.alias_type'), $this
->getType(), [
'default' => $this
->getPattern(),
]);
}
return $this->aliasTypeCollection
->get($this
->getType());
}
/**
* {@inheritdoc}
*/
public function getWeight() {
return $this->weight;
}
/**
* {@inheritdoc}
*/
public function setWeight($weight) {
$this->weight = $weight;
return $this;
}
/**
* {@inheritdoc}
*/
public function getSelectionConditions() {
if (!$this->selectionConditionCollection) {
$this->selectionConditionCollection = new ConditionPluginCollection(\Drupal::service('plugin.manager.condition'), $this
->get('selection_criteria'));
}
return $this->selectionConditionCollection;
}
/**
* {@inheritdoc}
*/
public function addSelectionCondition(array $configuration) {
$configuration['uuid'] = $this
->uuidGenerator()
->generate();
$this
->getSelectionConditions()
->addInstanceId($configuration['uuid'], $configuration);
return $configuration['uuid'];
}
/**
* {@inheritdoc}
*/
public function getSelectionCondition($condition_id) {
return $this
->getSelectionConditions()
->get($condition_id);
}
/**
* {@inheritdoc}
*/
public function removeSelectionCondition($condition_id) {
$this
->getSelectionConditions()
->removeInstanceId($condition_id);
return $this;
}
/**
* {@inheritdoc}
*/
public function getSelectionLogic() {
return $this->selection_logic;
}
/**
* {@inheritdoc}
*/
public function getContexts() {
$contexts = $this
->getAliasType()
->getContexts();
foreach ($this
->getRelationships() as $token => $definition) {
/** @var \Drupal\ctools\TypedDataResolver $resolver */
$resolver = \Drupal::service('ctools.typed_data.resolver');
$context = $resolver
->convertTokenToContext($token, $contexts);
$context_definition = $context
->getContextDefinition();
if (!empty($definition['label'])) {
$context_definition
->setLabel($definition['label']);
}
$contexts[$token] = $context;
}
return $contexts;
}
/**
* {@inheritdoc}
*/
public function hasRelationship($token) {
return isset($this->relationships[$token]);
}
/**
* {@inheritdoc}
*/
public function addRelationship($token, $label = NULL) {
if (!$this
->hasRelationship($token)) {
$this->relationships[$token] = [
'label' => $label,
];
}
return $this;
}
/**
* {@inheritdoc}
*/
public function replaceRelationship($token, $label) {
if ($this
->hasRelationship($token)) {
$this->relationships[$token] = [
'label' => $label,
];
}
return $this;
}
/**
* {@inheritdoc}
*/
public function removeRelationship($token) {
unset($this->relationships[$token]);
return $this;
}
/**
* {@inheritdoc}
*/
public function getRelationships() {
return $this->relationships;
}
/**
* {@inheritdoc}
*/
public function applies(EntityInterface $entity) {
if ($this
->getAliasType()
->applies($entity)) {
$definitions = $this
->getAliasType()
->getContextDefinitions();
if (count($definitions) > 1) {
throw new \Exception("Alias types do not support more than one context.");
}
$keys = array_keys($definitions);
// Set the context object on our Alias plugin before retrieving contexts.
$this
->getAliasType()
->setContextValue($keys[0], $entity);
/** @var \Drupal\Core\Plugin\Context\ContextInterface[] $base_contexts */
$contexts = $this
->getContexts();
/** @var \Drupal\Core\Plugin\Context\ContextHandler $context_handler */
$context_handler = \Drupal::service('context.handler');
$conditions = $this
->getSelectionConditions();
foreach ($conditions as $condition) {
if ($condition instanceof ContextAwarePluginInterface) {
try {
$context_handler
->applyContextMapping($condition, $contexts);
} catch (ContextException $e) {
watchdog_exception('view_mode_page', $e);
return FALSE;
}
}
$result = $condition
->execute();
if ($this
->getSelectionLogic() == 'and' && !$result) {
return FALSE;
}
elseif ($this
->getSelectionLogic() == 'or' && $result) {
return TRUE;
}
}
return TRUE;
}
return FALSE;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheableDependencyTrait:: |
protected | property | Cache contexts. | |
CacheableDependencyTrait:: |
protected | property | Cache max-age. | |
CacheableDependencyTrait:: |
protected | property | Cache tags. | |
CacheableDependencyTrait:: |
protected | function | Sets cacheability; useful for value object constructors. | |
ConfigEntityBase:: |
private | property | Whether the config is being deleted by the uninstall process. | |
ConfigEntityBase:: |
protected | property | The language code of the entity's default language. | |
ConfigEntityBase:: |
protected | property | The original ID of the configuration entity. | |
ConfigEntityBase:: |
protected | property | The enabled/disabled status of the configuration entity. | 4 |
ConfigEntityBase:: |
protected | property | Third party entity settings. | |
ConfigEntityBase:: |
protected | property | Trust supplied data and not use configuration schema on save. | |
ConfigEntityBase:: |
protected | property | The UUID for this entity. | |
ConfigEntityBase:: |
protected | property | Information maintained by Drupal core about configuration. | |
ConfigEntityBase:: |
protected | function | Overrides \Drupal\Core\Entity\DependencyTrait:addDependency(). | |
ConfigEntityBase:: |
public | function |
Creates a duplicate of the entity. Overrides EntityBase:: |
1 |
ConfigEntityBase:: |
public | function |
Disables the configuration entity. Overrides ConfigEntityInterface:: |
1 |
ConfigEntityBase:: |
public | function |
Enables the configuration entity. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Returns the value of a property. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Returns the cache tags that should be used to invalidate caches. Overrides EntityBase:: |
1 |
ConfigEntityBase:: |
public | function |
Gets the configuration dependency name. Overrides EntityBase:: |
|
ConfigEntityBase:: |
protected static | function | Gets the configuration manager. | |
ConfigEntityBase:: |
public | function |
Gets the configuration target identifier for the entity. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Gets the configuration dependencies. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Gets the original ID. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Gets the list of third parties that store information. Overrides ThirdPartySettingsInterface:: |
|
ConfigEntityBase:: |
public | function |
Gets the value of a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
ConfigEntityBase:: |
public | function |
Gets all third-party settings of a given module. Overrides ThirdPartySettingsInterface:: |
|
ConfigEntityBase:: |
protected | function | Gets the typed config manager. | |
ConfigEntityBase:: |
public | function |
Gets whether on not the data is trusted. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
protected static | function |
Override to never invalidate the individual entities' cache tags; the
config system already invalidates them. Overrides EntityBase:: |
|
ConfigEntityBase:: |
protected | function |
Override to never invalidate the entity's cache tag; the config system
already invalidates it. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Checks whether this entity is installable. Overrides ConfigEntityInterface:: |
2 |
ConfigEntityBase:: |
public | function |
Overrides Entity::isNew(). Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Returns whether this entity is being changed during the uninstall process. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Deprecated way of generating a link to the entity. See toLink(). Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Informs the entity that entities it depends on will be deleted. Overrides ConfigEntityInterface:: |
7 |
ConfigEntityBase:: |
public static | function |
Acts on entities before they are deleted and before hooks are invoked. Overrides EntityBase:: |
8 |
ConfigEntityBase:: |
public | function |
Saves an entity permanently. Overrides EntityBase:: |
1 |
ConfigEntityBase:: |
public | function |
Sets the value of a property. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Sets the original ID. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Sets the status of the configuration entity. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Sets the value of a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
ConfigEntityBase:: |
public | function | ||
ConfigEntityBase:: |
public static | function | Helper callback for uasort() to sort configuration entities by weight and label. | 6 |
ConfigEntityBase:: |
public | function |
Returns whether the configuration entity is enabled. Overrides ConfigEntityInterface:: |
4 |
ConfigEntityBase:: |
public | function |
Gets an array of all property values. Overrides EntityBase:: |
2 |
ConfigEntityBase:: |
public | function |
Gets the URL object for the entity. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Sets that the data should be trusted. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Unsets a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
ConfigEntityBase:: |
public | function |
Gets the public URL for this entity. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Gets the URL object for the entity. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Constructs an Entity object. Overrides EntityBase:: |
10 |
ConfigEntityBase:: |
public | function |
Overrides EntityBase:: |
4 |
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 | Aliased as: traitSleep | 1 |
DependencySerializationTrait:: |
public | function | 2 | |
DependencyTrait:: |
protected | property | The object's dependencies. | |
DependencyTrait:: |
protected | function | Adds multiple dependencies. | |
DependencyTrait:: |
protected | function | Adds a dependency. Aliased as: addDependencyTrait | |
EntityBase:: |
protected | property | Boolean indicating whether the entity should be forced to be new. | |
EntityBase:: |
protected | property | The entity type. | |
EntityBase:: |
protected | property | A typed data object wrapping this entity. | |
EntityBase:: |
public | function |
Checks data value access. Overrides AccessibleInterface:: |
1 |
EntityBase:: |
public | function |
Gets the bundle of the entity. Overrides EntityInterface:: |
1 |
EntityBase:: |
public static | function |
Constructs a new entity object, without permanently saving it. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Deletes an entity permanently. Overrides EntityInterface:: |
2 |
EntityBase:: |
public | function |
Enforces an entity to be new. Overrides EntityInterface:: |
|
EntityBase:: |
protected | function | Gets the entity manager. | |
EntityBase:: |
protected | function | Gets the entity type bundle info service. | |
EntityBase:: |
protected | function | Gets the entity type manager. | |
EntityBase:: |
public | function |
The cache contexts associated with this object. Overrides CacheableDependencyTrait:: |
|
EntityBase:: |
public | function |
The maximum age for which this object may be cached. Overrides CacheableDependencyTrait:: |
|
EntityBase:: |
public | function |
The cache tags associated with this object. Overrides CacheableDependencyTrait:: |
|
EntityBase:: |
public | function |
Gets the key that is used to store configuration dependencies. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Gets the entity type definition. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Gets the ID of the type of the entity. Overrides EntityInterface:: |
|
EntityBase:: |
protected | function | The list cache tags to invalidate for this entity. | |
EntityBase:: |
public | function |
Gets a typed data object for this entity object. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Indicates if a link template exists for a given key. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Gets the identifier. Overrides EntityInterface:: |
11 |
EntityBase:: |
public | function |
Gets the label of the entity. Overrides EntityInterface:: |
6 |
EntityBase:: |
public | function |
Gets the language of the entity. Overrides EntityInterface:: |
1 |
EntityBase:: |
protected | function | Gets the language manager. | |
EntityBase:: |
protected | function | Gets an array link templates. | 1 |
EntityBase:: |
public static | function |
Loads an entity. Overrides EntityInterface:: |
|
EntityBase:: |
public static | function |
Loads one or more entities. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Acts on a created entity before hooks are invoked. Overrides EntityInterface:: |
4 |
EntityBase:: |
public static | function |
Acts on loaded entities. Overrides EntityInterface:: |
2 |
EntityBase:: |
public | function |
Acts on a saved entity before the insert or update hook is invoked. Overrides EntityInterface:: |
14 |
EntityBase:: |
public static | function |
Changes the values of an entity before it is created. Overrides EntityInterface:: |
5 |
EntityBase:: |
public | function |
Gets a list of entities referenced by this entity. Overrides EntityInterface:: |
1 |
EntityBase:: |
public | function |
Generates the HTML for a link to this entity. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Gets a list of URI relationships supported by this entity. Overrides EntityInterface:: |
|
EntityBase:: |
protected | function | Gets an array of placeholders for this entity. | 2 |
EntityBase:: |
public | function |
Gets the entity UUID (Universally Unique Identifier). Overrides EntityInterface:: |
1 |
EntityBase:: |
protected | function | Gets the UUID generator. | |
PluginDependencyTrait:: |
protected | function | Calculates and adds dependencies of a specific plugin instance. | 1 |
PluginDependencyTrait:: |
protected | function | Calculates and returns dependencies of a specific plugin instance. | |
PluginDependencyTrait:: |
protected | function | Wraps the module handler. | 1 |
PluginDependencyTrait:: |
protected | function | Wraps the theme handler. | 1 |
RefinableCacheableDependencyTrait:: |
public | function | 1 | |
RefinableCacheableDependencyTrait:: |
public | function | ||
RefinableCacheableDependencyTrait:: |
public | function | ||
RefinableCacheableDependencyTrait:: |
public | function | ||
SynchronizableEntityTrait:: |
protected | property | Whether this entity is being created, updated or deleted through a synchronization process. | |
SynchronizableEntityTrait:: |
public | function | ||
SynchronizableEntityTrait:: |
public | function | ||
ViewmodepagePattern:: |
protected | property | The default single lazy plugin collection. | |
ViewmodepagePattern:: |
protected | property | The Viewmodepage pattern ID. | |
ViewmodepagePattern:: |
protected | property | The Viewmodepage pattern label. | |
ViewmodepagePattern:: |
protected | property | A string for path processing. | |
ViewmodepagePattern:: |
protected | property | The relationships. | |
ViewmodepagePattern:: |
protected | property | The plugin collection that holds the selection criteria condition plugins. | |
ViewmodepagePattern:: |
protected | property | The plugin configuration for the selection criteria condition plugins. | |
ViewmodepagePattern:: |
protected | property | The selection logic for this pattern entity (either 'and' or 'or'). | |
ViewmodepagePattern:: |
protected | property | The pattern type. | |
ViewmodepagePattern:: |
protected | property | A string denoting the type of view_mode is used for rendering. | |
ViewmodepagePattern:: |
protected | property | The weight for this position. | |
ViewmodepagePattern:: |
public | function |
Adds a relationship. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Adds selection criteria. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Determines if this pattern can apply a given object. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Calculates dependencies and stores them in the dependency property. Overrides ConfigEntityBase:: |
|
ViewmodepagePattern:: |
public | function |
Gets the alias type interface. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Returns the contexts of this pattern. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Get the pattern used during path processing. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Set the pattern regex to use during path processing. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Returns a list of relationships. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Gets selection criteria by condition id. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Gets the selection condition collection. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Gets the selection logic used by the criteria (ie. "and" or "or"). Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Gets the type of this pattern. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Gets the type of view_mode. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Gets the label of view_mode. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Gets the weight of this pattern (compared to other patterns of this type). Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Returns whether a relationship exists. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public static | function |
Acts on deleted entities before the delete hook is invoked. Overrides EntityBase:: |
|
ViewmodepagePattern:: |
public | function |
Not using core's default logic around ConditionPluginCollection since it
incorrectly assumes no condition will ever be applied twice. Overrides ConfigEntityBase:: |
|
ViewmodepagePattern:: |
public | function |
Removes a relationship. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Removes selection criteria by condition id. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Replaces a relationship. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Set the pattern to use during path processing. Overrides ViewmodepagePatternInterface:: |
|
ViewmodepagePattern:: |
public | function |
Sets the weight of this pattern (compared to other patterns of this type). Overrides ViewmodepagePatternInterface:: |