farm-2.x-dev/modules/core/plan/src/Plugin/Action/PlanActivate.php
modules/core/plan/src/Plugin/Action/PlanActivate.php
<?php
namespace Drupal\plan\Plugin\Action;
/**
* Action that marks a plan as active.
*
* @Action(
* id = "plan_activate_action",
* label = @Translation("Makes a Plan active"),
* type = "plan"
* )
*/
class PlanActivate extends PlanStateChangeBase {
/**
* {@inheritdoc}
*/
protected $targetState = 'active';
}
