| CommentHooks.php |
file |
core/modules/comment/src/Hook/CommentHooks.php |
|
| CommentHooks::cron |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_cron(). |
| CommentHooks::entityExtraFieldInfo |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_entity_extra_field_info(). |
| CommentHooks::entityInsert |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_entity_insert(). |
| CommentHooks::entityPredelete |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_entity_predelete(). |
| CommentHooks::entityStorageLoad |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_entity_storage_load(). |
| CommentHooks::entityView |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_entity_view(). |
| CommentHooks::entityViewDisplayPresave |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_ENTITY_TYPE_presave() for entity_view_display entities. |
| CommentHooks::fieldConfigCreate |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_ENTITY_TYPE_create() for 'field_config'. |
| CommentHooks::fieldConfigDelete |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_ENTITY_TYPE_delete() for 'field_config'. |
| CommentHooks::fieldConfigUpdate |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_ENTITY_TYPE_update() for 'field_config'. |
| CommentHooks::fieldInfoEntityTypeUiDefinitionsAlter |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_field_info_entity_type_ui_definitions_alter(). |
| CommentHooks::fieldStorageConfigInsert |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_ENTITY_TYPE_insert() for 'field_storage_config'. |
| CommentHooks::fieldTypeCategoryInfoAlter |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_field_type_category_info_alter(). |
| CommentHooks::help |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_help(). |
| CommentHooks::nodeLinksAlter |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_node_links_alter(). |
| CommentHooks::nodeSearchResult |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_node_search_result(). |
| CommentHooks::nodeUpdateIndex |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_node_update_index(). |
| CommentHooks::ranking |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_node_search_ranking(). |
| CommentHooks::userCancel |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_user_cancel(). |
| CommentHooks::userPredelete |
function |
core/modules/comment/src/Hook/CommentHooks.php |
Implements hook_ENTITY_TYPE_predelete() for user entities. |
| CommentHostnameTest |
class |
core/modules/comment/tests/src/Kernel/CommentHostnameTest.php |
Tests the hostname base field. |
| CommentHostnameTest.php |
file |
core/modules/comment/tests/src/Kernel/CommentHostnameTest.php |
|
| CommentHostnameTest::$modules |
property |
core/modules/comment/tests/src/Kernel/CommentHostnameTest.php |
Modules to install. |
| CommentHostnameTest::testGetDefaultHostname |
function |
core/modules/comment/tests/src/Kernel/CommentHostnameTest.php |
Tests hostname default value callback. |
| CommentIntegrationTest |
class |
core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php |
Tests integration of comment with other components. |
| CommentIntegrationTest.php |
file |
core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php |
|
| CommentIntegrationTest::$modules |
property |
core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php |
Modules to install. |
| CommentIntegrationTest::setUp |
function |
core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php |
|
| CommentIntegrationTest::testCommentDefaultOwner |
function |
core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php |
Tests the default owner of comment entities. |
| CommentIntegrationTest::testViewMode |
function |
core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php |
Tests view mode setting integration. |
| CommentInterface |
interface |
core/modules/comment/src/CommentInterface.php |
Provides an interface defining a comment entity. |
| CommentInterface.php |
file |
core/modules/comment/src/CommentInterface.php |
|
| CommentInterface::ANONYMOUS_MAYNOT_CONTACT |
constant |
core/modules/comment/src/CommentInterface.php |
Anonymous posters cannot enter their contact information. |
| CommentInterface::ANONYMOUS_MAY_CONTACT |
constant |
core/modules/comment/src/CommentInterface.php |
Anonymous posters may leave their contact information. |
| CommentInterface::ANONYMOUS_MUST_CONTACT |
constant |
core/modules/comment/src/CommentInterface.php |
Anonymous posters are required to leave their contact information. |
| CommentInterface::getAuthorEmail |
function |
core/modules/comment/src/CommentInterface.php |
Returns the comment author's email address. |
| CommentInterface::getAuthorName |
function |
core/modules/comment/src/CommentInterface.php |
Returns the comment author's name. |
| CommentInterface::getCommentedEntity |
function |
core/modules/comment/src/CommentInterface.php |
Returns the entity to which the comment is attached. |
| CommentInterface::getCommentedEntityId |
function |
core/modules/comment/src/CommentInterface.php |
Returns the ID of the entity to which the comment is attached. |
| CommentInterface::getCommentedEntityTypeId |
function |
core/modules/comment/src/CommentInterface.php |
Returns the type of the entity to which the comment is attached. |
| CommentInterface::getCreatedTime |
function |
core/modules/comment/src/CommentInterface.php |
Returns the time that the comment was created. |
| CommentInterface::getFieldName |
function |
core/modules/comment/src/CommentInterface.php |
Returns the name of the field the comment is attached to. |
| CommentInterface::getHomepage |
function |
core/modules/comment/src/CommentInterface.php |
Returns the comment author's home page address. |
| CommentInterface::getHostname |
function |
core/modules/comment/src/CommentInterface.php |
Returns the comment author's hostname. |
| CommentInterface::getParentComment |
function |
core/modules/comment/src/CommentInterface.php |
Returns the parent comment entity if this is a reply to a comment. |
| CommentInterface::getSubject |
function |
core/modules/comment/src/CommentInterface.php |
Returns the subject of the comment. |
| CommentInterface::getThread |
function |
core/modules/comment/src/CommentInterface.php |
Returns the alphadecimal representation of the comment's place in a thread. |
| CommentInterface::getTypeId |
function |
core/modules/comment/src/CommentInterface.php |
Get the comment type id for this comment. |
| CommentInterface::hasParentComment |
function |
core/modules/comment/src/CommentInterface.php |
Determines if this comment is a reply to another comment. |