ai_content_lifecycle-1.0.0/src/Form/ContentLifeCycleForm.php
src/Form/ContentLifeCycleForm.php
<?php
declare(strict_types=1);
namespace Drupal\ai_content_lifecycle\Form;
use Drupal\Core\Entity\ContentEntityForm;
use Drupal\Core\Form\FormStateInterface;
/**
* Form controller for the content life cycle entity edit forms.
*/
final class ContentLifeCycleForm extends ContentEntityForm {
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state): int {
$result = parent::save($form, $form_state);
$message_args = ['%label' => $this->entity->toLink()->toString()];
$logger_args = [
'%label' => $this->entity->label(),
'link' => $this->entity->toLink($this->t('View'))->toString(),
];
switch ($result) {
case SAVED_NEW:
$this->messenger()->addStatus($this->t('New content life cycle %label has been created.', $message_args));
$this->logger('ai_content_lifecycle')->notice('New content life cycle %label has been created.', $logger_args);
break;
case SAVED_UPDATED:
$this->messenger()->addStatus($this->t('The content life cycle %label has been updated.', $message_args));
$this->logger('ai_content_lifecycle')->notice('The content life cycle %label has been updated.', $logger_args);
break;
default:
throw new \LogicException('Could not save the entity.');
}
$form_state->setRedirectUrl($this->entity->toUrl());
return $result;
}
}
