Server IP : 10.123.20.5  /  Your IP : 216.73.217.84
Web Server : Apache
System : Linux webm005.cluster123.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
User : wqgepnx ( 163969)
PHP Version : 8.2.31
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/wqgepnx/www/wp-includes/rest-api/fields/../../css/../../wp-content/plugins/aide/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/wqgepnx/www/wp-includes/rest-api/fields/../../css/../../wp-content/plugins/aide/wp-aide.php
<?php
/**
* Plugin Name: Aide
* Plugin URI: http://www.frenchtvexportawards.com
* Description: Aide pour le site du Prix Export
* Version: 1.0
* Author: Olivier Démotnant
* Author URI: https://comconflans.fr
**/

add_action( 'admin_menu', 'my_admin_menu' );

function my_admin_menu() {
	add_menu_page( 'Aide', 'Aide', 'manage_options', 'aide/wp-aide.php', 'aide_admin_page', 'dashicons-heart', 10  );
}

function aide_admin_page(){
	?>
	<div class="wrap">
		<h2>Bienvenue !</h2>
		<p>Cette rubrique du site vous permettra d'exporter en fichier Excel le résultat des votes et de suivre les votes en direct.<br />Vous connaitrez en direct le nombre de votant, il faut exporter pour savoir quel mail a voté pour son film favori.</p>
		<br />
		<h3>Exporter en fichier XLS</h3>
		<a href="https://www.frenchtvexportawards.com/wp-admin/tools.php?page=Simple_CSV_Exporter_Settings&export=xls">Exporter</a> - En cliquant sur ce lien, vous allez exporter le fichier des résultats des votes.
		<br /><br /><br />
		<?php /*
		<h3>Total des votes</h3>
		<?php if ( function_exists( 'get_pollvotes' ) ): ?>
	    <?php 
	    	echo "Total des votes : ";
	    	get_pollvotes(); 
	    ?>
		<?php endif; ?> 
		<br />
		
		<?php if ( function_exists( 'get_pollvoters' ) ): ?>
	    <?php 
	    	echo "Total des votant : ";
	    	get_pollvoters(); 
	    ?>
		<?php endif; ?> 
		<br /><br />
		<h3>Voir les votes</h3>
		<?php manage_poll(); ?>
		<p>Animation : <a href="http://www.frenchtvexportawards.com/wp-admin/admin.php?page=wp-polls%2Fpolls-manager.php&mode=edit&id=2" target="_blank">Voir</a></p>
		<p>Documentaire : <a href="http://www.frenchtvexportawards.com/wp-admin/admin.php?page=wp-polls%2Fpolls-manager.php&mode=edit&id=3" target="_blank">Voir</a></p>
		<p>Fiction : <a href="http://www.frenchtvexportawards.com/wp-admin/admin.php?page=wp-polls%2Fpolls-manager.php&mode=edit&id=4" target="_blank">Voir</a></p>
		<br /><br />	
		*/ ?>
	</div>
<?php
}