Artesaos\SEOTools\SEOMeta::getTitleSeparator PHP Method

getTitleSeparator() public method

takes the title that was set.
public getTitleSeparator ( ) : string
return string
    public function getTitleSeparator()
    {
        return $this->title_separator ?: $this->config->get('defaults.separator', ' - ');
    }

Usage Example

Beispiel #1
0
 public function test_set_title_sepatator()
 {
     $fullHeader = "<title>Kamehamehaaaaaaaa | It's Over 9000!</title>";
     $fullHeader .= "<meta name=\"description\" content=\"For those who helped create the Genki Dama\">";
     $separator = ' | ';
     $fullTitle = 'Kamehamehaaaaaaaa';
     $this->seoMeta->setTitleSeparator($separator);
     $this->seoMeta->setTitle($fullTitle);
     $this->setRightAssertion($fullHeader);
     $this->assertEquals($separator, $this->seoMeta->getTitleSeparator());
 }