@@ 361-363 (lines=3) @@ | ||
358 | public function getMetaTags() { |
|
359 | $metas = []; |
|
360 | ||
361 | if (!empty($this->app->config['site']['keywords'])) { |
|
362 | $metas['metaName:keywords'] = ['name' => 'keywords', 'content' => $this->app->config['site']['keywords']]; |
|
363 | } |
|
364 | if (!empty($this->app->config['site']['description'])) { |
|
365 | $metas['metaName:description'] = ['name' => 'description', 'content' => $this->app->config['site']['description']]; |
|
366 | } |
|
@@ 364-366 (lines=3) @@ | ||
361 | if (!empty($this->app->config['site']['keywords'])) { |
|
362 | $metas['metaName:keywords'] = ['name' => 'keywords', 'content' => $this->app->config['site']['keywords']]; |
|
363 | } |
|
364 | if (!empty($this->app->config['site']['description'])) { |
|
365 | $metas['metaName:description'] = ['name' => 'description', 'content' => $this->app->config['site']['description']]; |
|
366 | } |
|
367 | if (!empty($this->app->config['site']['metatags'])) { |
|
368 | foreach ($this->app->config['site']['metatags'] as $meta) { |
|
369 | if (!empty($meta['name'])) { |