podcast_publisher-1.0.0-alpha3/src/Form/PodcastEpisodeForm.php
src/Form/PodcastEpisodeForm.php
<?php
namespace Drupal\podcast_publisher\Form;
use Drupal\Core\Entity\ContentEntityForm;
use Drupal\Core\Form\FormStateInterface;
/**
* Form controller for the podcast episode entity edit forms.
*/
class PodcastEpisodeForm extends ContentEntityForm {
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state) {
$result = parent::save($form, $form_state);
$entity = $this->getEntity();
$message_arguments = ['%label' => $entity->toLink()->toString()];
$logger_arguments = [
'%label' => $entity->label(),
'link' => $entity->toLink($this->t('View'))->toString(),
];
switch ($result) {
case SAVED_NEW:
$this->messenger()->addStatus($this->t('New podcast episode %label has been created.', $message_arguments));
$this->logger('podcast_publisher')->notice('Created new podcast episode %label', $logger_arguments);
break;
case SAVED_UPDATED:
$this->messenger()->addStatus($this->t('The podcast episode %label has been updated.', $message_arguments));
$this->logger('podcast_publisher')->notice('Updated podcast episode %label.', $logger_arguments);
break;
}
$form_state->setRedirect('entity.podcast_episode.canonical', ['podcast_episode' => $entity->id()]);
return $result;
}
}
