Breadcrumb or page name as form subject
PermalinkI have breadcrumb block in scrapbook called "bread".
I tried the following on form block/form/controller.php
//page title
$subject = $c->getCollectionName();
$mh->setSubject(t($subject, $this->surveyName));
//Breadcrumb
$subject = Block::getByName('bread');
$mh->setSubject(t($subject, $this->surveyName));
But no success. Can someone please help me.
or
For the second one, there's no way that will work. The object you get back is not string, so there is no way to use it to set the subject.