����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
home/eliteafr/www/wp-content/plugins/elementor/app/view.php 0000666 00000001324 15216561266 0020145 0 ustar 00 <?php
namespace Elementor\App;
use Elementor\Utils;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* @var App $this
*/
$theme_class = 'dark' === $this->get_elementor_ui_theme_preference() ? 'eps-theme-dark' : '';
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><?php echo esc_html__( 'Elementor', 'elementor' ) . ' ... '; ?></title>
<base target="_parent">
<?php wp_print_styles(); ?>
</head>
<body class="<?php Utils::print_unescaped_internal_string( $theme_class ); ?>">
<div id="e-app"></div>
<?php wp_print_footer_scripts(); ?>
</body>
</html>
home/eliteafr/pmb/includes/messages/tools/view.php 0000666 00000003363 15220224766 0016324 0 ustar 00 <?php
// +-------------------------------------------------+
// © 2002-2004 PMB Services / www.sigb.net pmb@sigb.net et contributeurs (voir www.sigb.net)
// +-------------------------------------------------+
// $Id: view.php,v 1.9 2013-04-04 09:44:23 mbertin Exp $
// -----------------------------------------
// ATTENTION CE FICHIER EST EN UTF-8
// -----------------------------------------
?>
<html>
<head>
<META http-equiv="Content-Type" Content="text/html; charset=utf-8">
</head>
<body>
<?php
print "<h2>PMB Translation Viewer</h2><hr />";
$charset="UTF-8";
include('../../../classes/XMLlist.class.php');
$base_path="../../../";
// on définit les langues existantes
$languages = new XMLlist("../languages.xml", 0);
$languages->analyser();
$avail_lang = $languages->table;
print "<table border='1'>";
$entete_colonne="<tr><th bgcolor=#00AA00> </th>";
$nb_lang = 0;
$messages_list=array();
while(list($cle, $valeur) = each($avail_lang)) {
$entete_colonne .= "<th>$valeur</th>";
$obj_lang = new XMLlist("../$cle.xml", 0);
$obj_lang->analyser();
$lang = $obj_lang->table;
while (list($key,$val) = each($lang)) {
$messages_list[$key][$nb_lang]=$val;
}
$nb_lang++;
}
$entete_colonne .= "</tr>\n";
echo $entete_colonne;
while (list($cle,$valeur)=each($messages_list)) {
echo "<tr>";
echo "<td>".$cle."</td>";
for ($i=0; $i<$nb_lang; $i++) {
$valeur1=$valeur;
$valeur1[$i]="";
$as=array_search($valeur[$i],$valeur1);
if (($as!==null)&&($as!==false)) $color="#dddddd"; else $color="#ffffff";
if ($valeur[$i]!="") echo "<td bgcolor=$color>".$valeur[$i]."</td>";
else {
echo "<td bgcolor=#ff0000> </td>";
$err = true ;
}
}
echo "</tr>";
if ($err) {
echo $entete_colonne ;
$err = false ;
}
}
print "</table>";
?>
</body>