You are here

public function Pool::v2Ready in CMS Content Sync 2.1.x

Same name and namespace in other branches
  1. 2.0.x src/Entity/Pool.php \Drupal\cms_content_sync\Entity\Pool::v2Ready()

File

src/Entity/Pool.php, line 526

Class

Pool
Defines the "Content Sync - Pool" entity.

Namespace

Drupal\cms_content_sync\Entity

Code

public function v2Ready() {
  $status = $this
    ->getV2Status();
  return self::V2_STATUS_ACTIVE === $status || self::V2_STATUS_EXPORTED === $status;
}