farm-2.x-dev/modules/core/plan/src/Plugin/Action/PlanArchive.php
modules/core/plan/src/Plugin/Action/PlanArchive.php
<?php
namespace Drupal\plan\Plugin\Action;
/**
* Action that archives a plan.
*
* @Action(
* id = "plan_archive_action",
* label = @Translation("Archive a plan"),
* type = "plan"
* )
*/
class PlanArchive extends PlanStateChangeBase {
/**
* {@inheritdoc}
*/
protected $targetState = 'archived';
}
