Issue #2625512 by heykarthikwithu, Mac_Weber, Wim Leers: Add @param, @return in the code base for the editor module
parent
be80816a56
commit
32c319a102
|
@ -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.
|
||||
*
|
||||
* @param int $format_id
|
||||
* A text format ID.
|
||||
*
|
||||
* @return \Drupal\editor\Entity\Editor|null
|
||||
* A text editor object, or NULL.
|
||||
*/
|
||||
|
|
|
@ -59,6 +59,11 @@ class Editor extends PluginBase implements InPlaceEditorInterface {
|
|||
|
||||
/**
|
||||
* Returns whether the text format has transformation filters.
|
||||
*
|
||||
* @param int $format_id
|
||||
* A text format ID.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
protected function textFormatHasTransformationFilters($format_id) {
|
||||
$format = entity_load('filter_format', $format_id);
|
||||
|
|
|
@ -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') {
|
||||
$entity = entity_load('entity_test', $entity_id, TRUE);
|
||||
|
|
Loading…
Reference in New Issue