Skip to content
TestXSSTitleBlock.php 580 B
Newer Older
 * Contains \Drupal\block_test\Plugin\Block\TestXSSTitleBlock.
namespace Drupal\block_test\Plugin\Block;
use Drupal\block\Annotation\Block;

/**
 * Provides a block to test XSS in title.
 *
 *   admin_label = "<script>alert('XSS subject');</script>"
 * )
 */
class TestXSSTitleBlock extends TestCacheBlock {

  /**
   *
   * Sets a different caching strategy for testing purposes.
   */
  public function defaultConfiguration() {
    return array(
      'cache' => DRUPAL_NO_CACHE,
    );
  }

}