You are here

public static function PushEntities::create in CMS Content Sync 2.1.x

Same name and namespace in other branches
  1. 8 src/Controller/PushEntities.php \Drupal\cms_content_sync\Controller\PushEntities::create()
  2. 2.0.x src/Controller/PushEntities.php \Drupal\cms_content_sync\Controller\PushEntities::create()

Instantiates a new instance of this class.

This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.

Overrides ControllerBase::create

1 call to PushEntities::create()
cms_content_sync_draggableviews_views_submit in modules/cms_content_sync_draggableviews/cms_content_sync_draggableviews.module
Submit handler.

File

src/Controller/PushEntities.php, line 69

Class

PushEntities
Pull controller.

Namespace

Drupal\cms_content_sync\Controller

Code

public static function create(ContainerInterface $container, $existing = null) {
  return new PushEntities($existing);
}