page_header key

In the _header.html template file we have:

<title>__page_header__</title>

Which of course will create the page title of the particular page being rendered.

 

I am having problems locating the page_header key in the Dolphin files; does someone know where this key is located?

Geeks, making the world a better place
Quote · 7 Dec 2014

Yes. It's in BxDolTemplate.php

Be careful. You have my head injections module which includes a modification to that section.

https://www.deanbassett.com
Quote · 7 Dec 2014

 

Yes. It's in BxDolTemplate.php

Be careful. You have my head injections module which includes a modification to that section.

I looked in BxDolTemplate.php but did not see it, guess I need to go back and examine it a bit closer.

And thanks for the answer.

Geeks, making the world a better place
Quote · 7 Dec 2014

            case 'page_header':
                if(!empty($GLOBALS[$this->_sPrefix . 'PageTitle']))
                    $sRet = $GLOBALS[$this->_sPrefix . 'PageTitle'];
                else if(isset($_page['header']))
                    $sRet = $_page['header'];

                //$sRet = process_line_output($sRet);
                break;

My opinions expressed on this site, in no way represent those of Boonex or Boonex employees.
Quote · 7 Dec 2014

 

            case 'page_header':
                if(!empty($GLOBALS[$this->_sPrefix . 'PageTitle']))
                    $sRet = $GLOBALS[$this->_sPrefix . 'PageTitle'];
                else if(isset($_page['header']))
                    $sRet = $_page['header'];

                //$sRet = process_line_output($sRet);
                break;

Thanks HL, I found that but that is just part of my search.

Geeks, making the world a better place
Quote · 7 Dec 2014
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.