Issue #2625512 by heykarthikwithu, Mac_Weber, Wim Leers: Add @param, @return in the code base for the editor module

8.1.x
Alex Pott 2016-01-05 10:42:40 +00:00
parent be80816a56
commit 32c319a102
3 changed files with 19 additions and 1 deletions

View File

@ -238,6 +238,9 @@ function editor_form_filter_admin_format_submit($form, FormStateInterface $form_
/** /**
* Loads an individual configured text editor based on text format ID. * Loads an individual configured text editor based on text format ID.
* *
* @param int $format_id
* A text format ID.
*
* @return \Drupal\editor\Entity\Editor|null * @return \Drupal\editor\Entity\Editor|null
* A text editor object, or NULL. * A text editor object, or NULL.
*/ */

View File

@ -59,6 +59,11 @@ class Editor extends PluginBase implements InPlaceEditorInterface {
/** /**
* Returns whether the text format has transformation filters. * Returns whether the text format has transformation filters.
*
* @param int $format_id
* A text format ID.
*
* @return bool
*/ */
protected function textFormatHasTransformationFilters($format_id) { protected function textFormatHasTransformationFilters($format_id) {
$format = entity_load('filter_format', $format_id); $format = entity_load('filter_format', $format_id);

View File

@ -111,7 +111,17 @@ class QuickEditIntegrationTest extends QuickEditTestBase {
} }
/** /**
* Returns the in-place editor that Edit selects. * Returns the in-place editor that quickedit selects.
*
* @param int $entity_id
* An entity ID.
* @param string $field_name
* A field name.
* @param string $view_mode
* A view mode.
*
* @return string
* Returns the selected in-place editor.
*/ */
protected function getSelectedEditor($entity_id, $field_name, $view_mode = 'default') { protected function getSelectedEditor($entity_id, $field_name, $view_mode = 'default') {
$entity = entity_load('entity_test', $entity_id, TRUE); $entity = entity_load('entity_test', $entity_id, TRUE);