/home/techb158/ileadtechnology.com/vendor/artesaos/seotools/src/SEOTools
NameSizeModeActions
Contracts/-0755rm
Facades/-0755rm
Providers/-0755rm
Traits/-0755rm
JsonLd.php51850644editdlrm
JsonLdMulti.php35190644editdlrm
OpenGraph.php170210644editdlrm
SEOMeta.php116270644editdlrm
SEOTools.php28210644editdlrm
TwitterCards.php34900644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/artesaos/seotools/src/SEOTools/SEOMeta.php (11627B)
'google-site-verification', 'bing' => 'msvalidate.01', 'alexa' => 'alexaVerifyID', 'pintrest' => 'p:domain_verify', 'yandex' => 'yandex-verification', 'norton' => 'norton-safeweb-site-verification', ]; /** * @param \Illuminate\Config\Repository $config */ public function __construct(Config $config) { $this->config = $config; } /** * {@inheritdoc}/ */ public function generate($minify = false) { $this->loadWebMasterTags(); $title = $this->getTitle(); $description = $this->getDescription(); $keywords = $this->getKeywords(); $metatags = $this->getMetatags(); $canonical = $this->getCanonical(); $amphtml = $this->getAmpHtml(); $prev = $this->getPrev(); $next = $this->getNext(); $languages = $this->getAlternateLanguages(); $robots = $this->getRobots(); $html = []; if ($title) { $html[] = Arr::get($this->config, 'add_notranslate_class', false) ? "$title" : "$title"; } if ($description) { $html[] = ""; } if (!empty($keywords)) { if($keywords instanceof \Illuminate\Support\Collection){ $keywords = $keywords->toArray(); } $keywords = implode(', ', $keywords); $html[] = ""; } foreach ($metatags as $key => $value) { $name = $value[0]; $content = $value[1]; // if $content is empty jump to nest if (empty($content)) { continue; } $html[] = ""; } if ($canonical) { $html[] = ""; } if ($amphtml) { $html[] = ""; } if ($prev) { $html[] = ""; } if ($next) { $html[] = ""; } foreach ($languages as $lang) { $html[] = ""; } if ($robots) { $html[] = ""; } return ($minify) ? implode('', $html) : implode(PHP_EOL, $html); } /** * {@inheritdoc} */ public function setTitle($title, $appendDefault = true) { // open redirect vulnerability fix $title = str_replace(['http-equiv=', 'url='], '', $title); // clean title $title = strip_tags($title); // store title session $this->title_session = $title; // store title if (true === $appendDefault) { $this->title = $this->parseTitle($title); } else { $this->title = $title; } return $this; } /** * {@inheritdoc} */ public function setTitleDefault($default) { $this->title_default = $default; return $this; } /** * {@inheritdoc} */ public function setTitleSeparator($separator) { $this->title_separator = $separator; return $this; } /** * {@inheritdoc} */ public function setDescription($description) { // clean and store description // if is false, set false $this->description = (false == $description) ? $description : htmlspecialchars($description, ENT_QUOTES, 'UTF-8', false); return $this; } /** * {@inheritdoc} */ public function setKeywords($keywords) { if (!is_array($keywords)) { $keywords = explode(', ', $keywords); } // clean keywords $keywords = array_map('strip_tags', $keywords); // store keywords $this->keywords = $keywords; return $this; } /** * {@inheritdoc} */ public function addKeyword($keyword) { if (is_array($keyword)) { $this->keywords = array_merge($keyword, $this->keywords); } else { $this->keywords[] = strip_tags($keyword); } return $this; } /** * {@inheritdoc} */ public function removeMeta($key) { Arr::forget($this->metatags, $key); return $this; } /** * {@inheritdoc} */ public function addMeta($meta, $value = null, $name = 'name') { // multiple metas if (is_array($meta)) { foreach ($meta as $key => $value) { $this->metatags[$key] = [$name, $value]; } } else { $this->metatags[$meta] = [$name, $value]; } return $this; } /** * {@inheritdoc} */ public function setCanonical($url) { $this->canonical = $url; return $this; } /** * Sets the AMP html URL. * * @param string $url * * @return MetaTagsContract */ public function setAmpHtml($url) { $this->amphtml = $url; return $this; } /** * {@inheritdoc} */ public function setPrev($url) { $this->prev = $url; return $this; } /** * {@inheritdoc} */ public function setNext($url) { $this->next = $url; return $this; } /** * {@inheritdoc} */ public function addAlternateLanguage($lang, $url) { $this->alternateLanguages[] = ['lang' => $lang, 'url' => $url]; return $this; } /** * {@inheritdoc} */ public function addAlternateLanguages(array $languages) { $this->alternateLanguages = array_merge($this->alternateLanguages, $languages); return $this; } /** * Sets the meta robots. * * @param string $robots * * @return MetaTagsContract */ public function setRobots($robots) { $this->robots = $robots; return $this; } /** * {@inheritdoc} */ public function getTitle() { return $this->title ?: $this->getDefaultTitle(); } /** * {@inheritdoc} */ public function getDefaultTitle() { if (empty($this->title_default)) { return $this->config->get('defaults.title', null); } return $this->title_default; } /** * {@inheritdoc} */ public function getTitleSession() { return $this->title_session ?: $this->getTitle(); } /** * {@inheritdoc} */ public function getTitleSeparator() { return $this->title_separator ?: $this->config->get('defaults.separator', ' - '); } /** * {@inheritdoc} */ public function getKeywords() { return $this->keywords ?: $this->config->get('defaults.keywords', []); } /** * {@inheritdoc} */ public function getMetatags() { return $this->metatags; } /** * {@inheritdoc} */ public function getDescription() { if (false === $this->description) { return; } return $this->description ?: $this->config->get('defaults.description', null); } /** * {@inheritdoc} */ public function getCanonical() { $canonical_config = $this->config->get('defaults.canonical', false); return $this->canonical ?: (($canonical_config === null) ? app('url')->full() : $canonical_config); } /** * Get the AMP html URL. * * @return string */ public function getAmpHtml() { return $this->amphtml; } /** * {@inheritdoc} */ public function getPrev() { return $this->prev; } /** * {@inheritdoc} */ public function getNext() { return $this->next; } /** * {@inheritdoc} */ public function getAlternateLanguages() { return $this->alternateLanguages; } /** * Get meta robots. * * @return string */ public function getRobots() { return $this->robots ?: $this->config->get('defaults.robots', null); } /** * {@inheritdoc} */ public function reset() { $this->description = null; $this->title_session = null; $this->next = null; $this->prev = null; $this->canonical = null; $this->amphtml = null; $this->metatags = []; $this->keywords = []; $this->alternateLanguages = []; $this->robots = null; } /** * Get parsed title. * * @param string $title * * @return string */ protected function parseTitle($title) { $default = $this->getDefaultTitle(); if (empty($default)) { return $title; } $defaultBefore = $this->config->get('defaults.titleBefore', false); return $defaultBefore ? $default.$this->getTitleSeparator().$title : $title.$this->getTitleSeparator().$default; } /** * Load webmaster tags from configuration. */ protected function loadWebMasterTags() { foreach ($this->config->get('webmaster_tags', []) as $name => $value) { if (!empty($value)) { $meta = Arr::get($this->webmasterTags, $name, $name); $this->addMeta($meta, $value); } } } }