public static function Html::resetSeenIds in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Component/Utility/Html.php \Drupal\Component\Utility\Html::resetSeenIds()
Resets the list of seen IDs.
6 calls to Html::resetSeenIds()
- BlockViewBuilderTest::testBasicRendering in core/
modules/ block/ src/ Tests/ BlockViewBuilderTest.php - Tests the rendering of blocks.
- FormBuilder::processForm in core/
lib/ Drupal/ Core/ Form/ FormBuilder.php - Processes a form submission.
- FormTestBase::tearDown in core/
tests/ Drupal/ Tests/ Core/ Form/ FormTestBase.php - HtmlTest::testHtmlGetUniqueId in core/
tests/ Drupal/ Tests/ Component/ Utility/ HtmlTest.php - Tests the Html::getUniqueId() method.
- ViewsFormBase::getForm in core/
modules/ views_ui/ src/ Form/ Ajax/ ViewsFormBase.php - Creates a new instance of this form.
File
- core/
lib/ Drupal/ Component/ Utility/ Html.php, line 220 - Contains \Drupal\Component\Utility\Html.
Class
- Html
- Provides DOMDocument helpers for parsing and serializing HTML strings.
Namespace
Drupal\Component\UtilityCode
public static function resetSeenIds() {
static::$seenIds = NULL;
}