123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <?php
- use Drupal\Core\Form\FormStateInterface;
- use Drupal\Core\Routing\RouteMatchInterface;
- use Drupal\Core\Url;
- function linkit_help($route_name, RouteMatchInterface $route_match) {
- switch ($route_name) {
- case 'help.page.linkit':
- $output = '';
- $output .= '<h3>' . t('About') . '</h3>';
- $output .= '<p>' . t('The Linkit module provides an easy interface for internal and external linking with wysiwyg editors by using an autocomplete field.') . '</p>';
- $output .= '<h3>' . t('Uses') . '</h3>';
- $output .= '<dl>';
- $output .= '<dt>' . t('Managing Linkit profiles') . '</dt>';
- $output .= '<dd>' . t('You can create and edit Linkit profiles on the <a href=":profiles">Linkit profile page</a>. You can create a Linkit profile by clicking "<a href=":add_profile">Add profile</a>".', [':profiles' => Url::fromRoute('entity.linkit_profile.collection')->toString(), ':add_profile' => Url::fromRoute('entity.linkit_profile.add_form')->toString()]) . '</dd>';
- $output .= '</dl>';
- return $output;
- case 'entity.linkit_profile.collection':
- $output = '<p>' . t('Linkit profiles define how Linkit will operate on fields that have Linkit attached.') . '</p>';
- $output .= '<p>' . t('The most common way to use Linkit is to enable Linkit on the Drupal Link plugin and associate a Linkit profile to it on a Text format.') . '</p>';
- return $output;
- case 'linkit.matchers':
- $output = '<p>' . t('Matchers defines how different data can be queried and displayed in the autocomplete suggestion list. Multiple matchers of the same type can be used at the same time to granulate the suggestions. The order of the added matchers defines in which order the suggestions will be presented.') . '</p>';
- return $output;
- }
- }
- function linkit_ckeditor_plugin_info_alter(array &$plugins) {
- if (isset($plugins['drupallink'])) {
- $plugins['drupallink']['class'] = "Drupal\\linkit\\Plugin\\CKEditorPlugin\\LinkitDrupalLink";
- }
- }
- function linkit_form_editor_link_dialog_alter(&$form, FormStateInterface $form_state, $form_id) {
-
- if ($form_id !== 'editor_link_dialog') {
- return;
- }
-
- $filter_format = $form_state->getBuildInfo()['args'][0];
-
- $editorStorage = Drupal::service('entity.manager')->getStorage('editor');
-
- $editor = $editorStorage->load($filter_format->id());
- $plugin_settings = $editor->getSettings()['plugins']['drupallink'];
-
- if (!isset($plugin_settings['linkit_enabled']) || (isset($plugin_settings['linkit_enabled']) && !$plugin_settings['linkit_enabled'])) {
- return;
- }
- $linkit_profile_id = $editor->getSettings()['plugins']['drupallink']['linkit_profile'];
- if (isset($form_state->getUserInput()['editor_object'])) {
- $input = $form_state->getUserInput()['editor_object'];
- $form_state->set('link_element', $input);
- $form_state->setCached(TRUE);
- }
- else {
-
- $input = $form_state->get('link_element') ?: [];
- }
- $form['href_dirty_check'] = [
- '#type' => 'hidden',
- '#default_value' => isset($input['href']) ? $input['href'] : '',
- ];
- $form['attributes']['href'] = array_merge($form['attributes']['href'], [
- '#type' => 'linkit',
- '#description' => t('Start typing to find content.'),
- '#autocomplete_route_name' => 'linkit.autocomplete',
- '#autocomplete_route_parameters' => [
- 'linkit_profile_id' => $linkit_profile_id,
- ],
- "#weight" => -10,
- '#default_value' => isset($input['href']) ? $input['href'] : '',
- ]);
- $fields = [
- 'data-entity-type',
- 'data-entity-uuid',
- 'data-entity-substitution',
- ];
- $form['attributes']["#weight"] = -100;
- foreach ($fields as $field_name) {
- $form['attributes'][$field_name] = [
- '#title' => $field_name,
- '#type' => 'hidden',
- '#default_value' => isset($input[$field_name]) ? $input[$field_name] : '',
- ];
- }
-
- array_unshift($form['#submit'], 'linkit_form_editor_link_dialog_submit');
- }
- function linkit_form_editor_link_dialog_submit(array &$form, FormStateInterface $form_state) {
- $link_element = $form_state->get('link_element');
- $href = $form_state->getValue(['attributes', 'href']);
- $href_dirty_check = $form_state->getValue(['href_dirty_check']);
- if ($href !== $href_dirty_check) {
- $form_state->unsetValue(['attributes', 'data-entity-type']);
- $form_state->unsetValue(['attributes', 'data-entity-uuid']);
- $form_state->unsetValue(['attributes', 'data-entity-substitution']);
- }
- $fields = [
- 'href',
- 'data-entity-type',
- 'data-entity-uuid',
- 'data-entity-substitution',
- ];
- foreach ($fields as $field_name) {
- $value = $form_state->getValue(['attributes', $field_name]);
- if (empty($value)) {
- if (!empty($link_element)) {
- $form_state->setValue(['attributes', $field_name], '');
- }
- else {
- $form_state->unsetValue(['attributes', $field_name]);
- }
- }
- }
- }
|