'suresoftware.powerseo::lang.component.cms.name', 'description' => 'suresoftware.powerseo::lang.component.cms.description' ]; } public function defineProperties() { return []; } public function onRender() { $this->page["hasBlog"] = false; if($this->page->page->hasComponent("blogPosts")){ $category = $this->page->page->components['blogPosts']->category; $this->seo_title = $this->page["seo_title"] = $category ? $category->name : $this->page->meta_title; $this->seo_description = $this->page["seo_description"] = $category ? $category->description : $this->page->meta_description; $this->seo_keywords = $this->page["seo_keywords"] = $category ? $category->name :$this->page->seo_keywords; } else if (!$this->page->page->hasComponent("SeoBlogPost")) { $this->seo_title = $this->page["seo_title"] = empty($this->page->meta_title) ? $this->page->title : $this->page->meta_title; $this->seo_description = $this->page["seo_description"] = $this->page->meta_description; $this->seo_keywords = $this->page["seo_keywords"] = $this->page->seo_keywords; $this->canonical_url = $this->page["canonical_url"] = $this->page->canonical_url; $this->redirect_url = $this->page["redirect_url"] = $this->page->redirect_url; $this->robot_follow = $this->page["robot_follow"] = $this->page->robot_follow; $this->robot_index = $this->page["robot_index"] = $this->page->robot_index; $settings = Settings::instance(); if ($settings->enable_og_tags) { $this->ogTitle = empty($this->page->meta_title) ? $this->page->title : $this->page->meta_title; $this->ogDescription = $this->page->meta_description; $this->ogUrl = empty($this->page->canonical_url) ? Request::url() : $this->page->canonical_url; $this->ogSiteName = $settings->og_sitename; $this->ogFbAppId = $settings->og_fb_appid; } } else { //todo els if has category component $this->hasBlog = $this->page["hasBlog"] = true; } } }