You are here

public function SearchByPageTesterTest::search_by_page_test_block_view in Search by Page 8

Implements hook_block_view().

See also

search_by_page_test_block_info()

File

tests/src/Functional/SearchByPageTesterTest.php, line 541
General Functional Tests for the Search by Page module. By Jennifer Hodgdon of Poplar ProductivityWare, www.poplarware.com

Class

SearchByPageTesterTest
Base class for testing Search by Page.

Namespace

Drupal\Tests\search_by_page\Functional

Code

public function search_by_page_test_block_view($delta = '') {
  $text = Html::escape($delta);
  return array(
    'subject' => ucfirst($text) . ' title',
    'content' => $text . ' block body',
  );
}