uawdijnntqw1x1x1
IP : 216.73.217.34
Hostname : webm019.cluster129.gra.hosting.ovh.net
Kernel : Linux webm019.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
checkyd
/
www
/
local
/
.
/
..
/
plugins
/
..
/
plugins
/
seo-1
/
pipelines
/
seo_insert_head.php
/
/
<?php /** * BouncingOrange SPIP SEO plugin * * @category SEO * @package SPIP_SEO * @author Pierre ROUSSET (p.rousset@gmail.com) * @copyright Copyright (c) 2009 BouncingOrange (http://www.bouncingorange.com) * @license http://opensource.org/licenses/gpl-2.0.php General Public License (GPL 2.0) */ if (!defined("_ECRIRE_INC_VERSION")) return; function seo_insert_head($flux) { /* CONFIG */ $config = unserialize($GLOBALS['meta']['seo']); if ($config['insert_head']['activate'] == 'yes') { $contexte = $GLOBALS['contexte']; unset($contexte['lang']); if (count($contexte) == 0) { $type_object = 'sommaire'; } elseif (isset($contexte['id_article'])) { $id_object = $contexte['id_article']; $type_object = 'article'; } elseif (isset($contexte['id_rubrique'])) { $id_object = $contexte['id_rubrique']; $type_object = 'rubrique'; } /* META TAGS */ if ($config['meta_tags']['activate'] == 'yes') { $flux .= generer_meta_tags(); } /* META GOOGLE WEBMASTER TOOLS */ if ($config['webmaster_tools']['activate'] == 'yes' && $type_object == 'sommaire') { $flux .= generer_webmaster_tools(); } /* CANONICAL URL */ if ($config['canonical_url']['activate'] == 'yes') { $flux .= generer_urls_canoniques(); } /* GOOGLE ANALYTICS */ if ($config['analytics']['activate'] == 'yes') { $flux .= generer_google_analytics(); } /* ALEXA */ if ($config['alexa']['activate'] == 'yes' && $type_object == 'sommaire') { $flux .= generer_alexa(); } } return $flux; }
/home/checkyd/www/local/./../plugins/../plugins/seo-1/pipelines/seo_insert_head.php