From 1596a779ce1e47926392bc57343b712e7c5d4736 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 26 Jun 2012 15:44:09 -0400 Subject: [PATCH] Changed default headTitle behavior. --- module/VuFind/src/VuFind/Bootstrap.php | 19 +++++++++++++++++++ .../blueprint/templates/author/results.phtml | 5 +---- .../blueprint/templates/author/search.phtml | 5 +---- .../templates/author/results.phtml | 5 +---- .../templates/author/search.phtml | 5 +---- 5 files changed, 23 insertions(+), 16 deletions(-) diff --git a/module/VuFind/src/VuFind/Bootstrap.php b/module/VuFind/src/VuFind/Bootstrap.php index 883f81b1da7..1fa410d55ad 100644 --- a/module/VuFind/src/VuFind/Bootstrap.php +++ b/module/VuFind/src/VuFind/Bootstrap.php @@ -66,6 +66,7 @@ class Bootstrap { $this->initAccount(); $this->initContext(); + $this->initHeadTitle(); $this->initTheme(); } @@ -107,6 +108,24 @@ class Bootstrap $this->events->attach('dispatch', $callback); } + /** + * Set up headTitle view helper -- we always want to set, not append, titles. + * + * @return void + */ + protected function initHeadTitle() + { + $callback = function($event) { + $serviceManager = $event->getApplication()->getServiceManager(); + $renderer = $serviceManager->get('viewmanager')->getRenderer(); + $headTitle = $renderer->plugin('headtitle'); + $headTitle->setDefaultAttachOrder( + \Zend\View\Helper\Placeholder\Container\AbstractContainer::SET + ); + }; + $this->events->attach('dispatch', $callback); + } + /** * Set up theme handling. * diff --git a/themes/vufind/blueprint/templates/author/results.phtml b/themes/vufind/blueprint/templates/author/results.phtml index 0f4d16eacc8..76f90ba9081 100644 --- a/themes/vufind/blueprint/templates/author/results.phtml +++ b/themes/vufind/blueprint/templates/author/results.phtml @@ -5,10 +5,7 @@ // Override some details... // Set up page title: - $this->headTitle( - $this->translate('Author Search Results'), - Zend_View_Helper_Placeholder_Container_Abstract::SET - ); + $this->headTitle($this->translate('Author Search Results')); // Set up empty search box: $this->layout()->searchbox = $this->render('search/searchbox.phtml'); diff --git a/themes/vufind/blueprint/templates/author/search.phtml b/themes/vufind/blueprint/templates/author/search.phtml index f8fc1bf0fa7..c01aedc492b 100644 --- a/themes/vufind/blueprint/templates/author/search.phtml +++ b/themes/vufind/blueprint/templates/author/search.phtml @@ -13,10 +13,7 @@ // Override some details... // Set up page title: - $this->headTitle( - $this->translate('Author Browse'), - Zend_View_Helper_Placeholder_Container_Abstract::SET - ); + $this->headTitle($this->translate('Author Browse')); // Set up empty search box: $this->layout()->searchbox = $this->render('search/searchbox.phtml'); diff --git a/themes/vufind/jquerymobile/templates/author/results.phtml b/themes/vufind/jquerymobile/templates/author/results.phtml index d1a1cae242a..ced264acc6d 100644 --- a/themes/vufind/jquerymobile/templates/author/results.phtml +++ b/themes/vufind/jquerymobile/templates/author/results.phtml @@ -5,8 +5,5 @@ // Override some details... // Set up page title: - $this->headTitle( - $this->translate('Author Search Results'), - Zend_View_Helper_Placeholder_Container_Abstract::SET - ); + $this->headTitle($this->translate('Author Search Results')); ?> \ No newline at end of file diff --git a/themes/vufind/jquerymobile/templates/author/search.phtml b/themes/vufind/jquerymobile/templates/author/search.phtml index efa29c774c1..30dd8161fc3 100644 --- a/themes/vufind/jquerymobile/templates/author/search.phtml +++ b/themes/vufind/jquerymobile/templates/author/search.phtml @@ -10,8 +10,5 @@ // Override some details... // Set up page title: - $this->headTitle( - $this->translate('Author Browse'), - Zend_View_Helper_Placeholder_Container_Abstract::SET - ); + $this->headTitle($this->translate('Author Browse')); ?> \ No newline at end of file -- GitLab