Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. <?php
  2.  
  3. class PageControllerExtension extends Extension {
  4.    
  5.     public function onBeforeInit() {
  6.  
  7.         /* =========================================
  8.          * SEO
  9.          =========================================*/
  10.  
  11.         $tags = '';
  12.         if(!$this->owner->MetaDescription && $metaDescription = SiteConfig::current_site_config()->MetaDescription) {
  13.             $tags .= "<meta name=\"description\" content=\"" . Convert::raw2att($metaDescription) . "\" />\n";
  14.         }
  15.         $this->owner->extend('MetaTags', $tags);
  16.  
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement