__construct(); } function __construct() { global $wpdb; $this->adCount=0; $this->wpdb=$wpdb; $this->verticalPrefix = "AdFever - Vertical"; $this->horyzontalName = "adfever"; $this->vb_title = ""; $this->optionName = $this->horyzontalName; $this->file=basename(__FILE__); $this->max_no_vertads=5; $this->formError=array(); $this->default_jscode=""; $this->jm_db_version = "1.0"; $this->table_name = $wpdb->prefix . "adfever"; } function setAdFeverJS() { $this->optionName=$this->horyzontalName; if(! $this->setOption() ) { $this->save2DB(); $this->setOption(); } return $this->getOption(); } function initAdFever() { $this->setAdFeverJS(); add_action('activate_'.$this->file, array(&$this, 'activationWP')); $this->addHook(); add_action('plugins_loaded',array(&$this, 'widgetSideBar')); add_filter('the_content', array(&$this,'placeAdInContent')); // may not work on windows register_deactivation_hook(__FILE__,array(&$this,'deactivationWP')); } ////////////////////////////////////////////// widget sidebar code ///////////////////////////////////////// function widgetSideBar() { $number=3; if (!function_exists('register_sidebar_widget')) { return; } for ($i = 1; $i <= $this->max_no_vertads; $i++) { $name = array($this->verticalPrefix.' %s', 'widgets', $i); register_sidebar_widget($name, $i <= $number ? array(&$this, 'vertAdFever') : /* unregister */ '', $i); register_widget_control($name, $i <= $number ? array(&$this, 'vertAdFeverEdit') : /* unregister */ '', 400, 400, $i); } } function vertAdFeverEdit($number=1) { $this->processWidgetForm($number); $this->optionName = $this->verticalPrefix." ".$number; $this->displaySettingV($this->optionName, $number); } function vertAdFever($args,$number=1) { $this->optionName = $this->verticalPrefix." ".$number; $this->setOption(); echo $args['before_widget'].'
'; echo $args['before_title'] . $this->vb_title . $args['after_title']; echo $this->getOption(); echo "
".$args['after_widget']; } /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// function makeNewTable () { if($this->wpdb->get_var("show tables like '{$this->table_name}'") != $this->table_name) { $sql = "CREATE TABLE " . $this->table_name . " ( id mediumint(9) NOT NULL AUTO_INCREMENT, dtime timestamp NOT NULL, name tinytext NOT NULL, text text NOT NULL, url VARCHAR(55) NOT NULL, PRIMARY KEY id (id) );"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); dbDelta($sql); $welcome_name = "Plugin"; $welcome_text = "Installation complete"; $insert = "INSERT INTO " . $this->table_name . " ( name, text) " . "VALUES ('" . $this->wpdb->escape($welcome_name) . "','" . $this->wpdb->escape($welcome_text) . "')"; $results = $this->wpdb->query( $insert ); add_option("jm_db_version", $this->jm_db_version); } else { //print "Table already exists"; } } function save2DB() { $results = $this->wpdb->query("DELETE FROM $this->table_name WHERE name='" . $this->wpdb->escape($this->optionName) . "'"); $results = $this->wpdb->query("INSERT INTO $this->table_name ( vb_title, name, text) "."VALUES ('" . $this->wpdb->escape($this->vb_title) . "','" . $this->wpdb->escape($this->optionName) . "','" . $this->wpdb->escape( $this->default_jscode) . "')"); } function setOption() { $this->default_jscode = $this->wpdb->get_var("SELECT text FROM $this->table_name WHERE name='" . $this->wpdb->escape($this->optionName) . "'"); $this->vb_title = $this->wpdb->get_var("SELECT vb_title FROM $this->table_name WHERE name='" . $this->wpdb->escape($this->optionName) . "'"); return $this->default_jscode; } function getOption() { return $this->default_jscode; } function deleteOption() { $results = $this->wpdb->query("DELETE FROM $this->table_name WHERE name='" . $this->wpdb->escape($this->optionName) . "'"); } // ACTIVATION & DEACTIVATION: due to register_activation_hook failing on windows, work around performed // activation via add_action('activate_'.$this->file, array(&$this, 'activationWP')); function activationWP() { $this->makeNewTable(1); $this->save2DB(); } function deactivationWP() { $this->name_ar = $this->wpdb->get_col("SELECT name FROM $this->table_name"); foreach ($this->name_ar as $name) { $this->optionName = $name; register_sidebar_widget ($name,""); // same as unregister with empty string callback value register_widget_control ($name,""); $this->deleteOption(); // empty DB table } add_action('widgets_init',array(&$this, 'unregisterWidgets')); } function unregisterWidgets() { // doesnt do anything on windows foreach ($this->name_ar as $name) { unregister_sidebar_widget($name); unregister_sidebar_widget($name); } } function admin_adview() { print $this->getOption(). $this->getOption(); } //////////////////////////////////////////////////////// AdFever Admin ///////////////////////////////////////////// function addHook() { add_action('admin_menu',array(&$this, 'addSubMenu')); } function addSubMenu() { add_options_page('AdFever settings', 'AdFever', 9, $this->file, array(&$this, 'displaySetting')); } function displaySetting($name="") { $radios=array( "left" => "Left", "center" => "Center", "right" => "Right" ); $textarea= $this->fr_TextArea("adfever_jscode", 35, 10); $inputtext= $this->fr_TextInput("maxads", 2) ; $radio= $this->fr_Radio("pos", $radios); $this->processPluginForm(); $this->optionName = ($name == "")?$this->horyzontalName:$name; print <<

AdFever admin

{$this->formHeadMessage}
AdFever banner ad setting
Paste AdFever JavaScript code below
{$this->formError["adfever_jscode"]} $textarea
{$this->formError["maxads"]} $inputtext Max number of ads to display in main content page
{$this->formError["pos"]} Ad position: $radio
CNT; } function displaySettingV($name="",$no=1) { $textarea= $this->fr_TextArea("adfever_jscode".$no, 35, 10); $this->optionName = ($name == "")?$this->horyzontalName:$name; // useless must be set to vertical banner name $inputtext= $this->fr_TextInput("vb_title{$no}", 25); print <<

AdFever admin

Add title (optional)
$inputtext
Paste AdFever JavaScript code below
{$this->formError["adfever_jscode".$no]} $textarea
CNT; } ///////////////////////////////////////////// FORM PROCESSING ////////////////////////////////////////// function processWidgetForm($no) { // if ( isset($_POST["do".$no]) && ($_POST["do".$no]=="adfever_id_v")) { $this->optionName = $_POST["widget_name".$no]; $this->default_jscode =$this->stripS($_POST["adfever_jscode".$no]); $this->vb_title =$this->stripS($_POST["vb_title".$no]); $this->check_form("string","adfever_jscode".$no); if (preg_match("/(?:javascript|iframe)/i", $this->default_jscode )) { $this->save2DB(); } } } function processPluginForm() { // $this->formHeadMessage=""; if ( isset($_POST["do"]) && ($_POST["do"]=="adfever_id_h")) { $this->optionName = $_POST["widget_name"]; // always same value: could be set manually $this->default_jscode =$this->stripS($_POST["adfever_jscode"]); $this->check_form("number", "maxads"); $this->check_form("string","adfever_jscode"); $this->check_form("radio","pos", array("left","center","right")); if ($this->insertOk()) { $this->save2DB(); update_option('adfever_maxads', $_POST['maxads']); update_option('adfever_pos', $_POST['pos'][0]); $this->formHeadMessage="
Banner ad saved!!
"; } else { $this->formHeadMessage="
Check for input errors and try again
"; } } } function insertOk() { return ((count($this->formError) >= 1)?false:true); } function check_form($type, $name, $options=null) { switch($type) { case "number": if (preg_match("/^\d+$/",$_POST[$name])) { return true; } else { $this->formError[$name]="
Valid number required
"; } break; case "string": if (preg_match("/(?:javascript|iframe)/i",$_POST[$name] )) { return true; } else { $this->formError[$name]="
Invalid data supplied
"; } break; case "number": if (preg_match("/^\d+$/",$_POST[$name])) { return true; } else { $this->formError[$name]="
Valid number required
"; } break; case "radio": $reg=implode("|",$options); if (preg_match("/^(?:$reg)$/",$_POST[$name][0])) { return true; } else { $this->formError[$name]="
Selection required
"; } break; } } ////////////////////////////// Sticky forms: textarea, text input, radio button ////////////////////////// function fr_TextArea($name, $cols, $rows) { return ""; } function fr_TextInput($name, $size=25) { return "stripS($_POST[$name]))."\">"; } function fr_Radio($name, $values) { $ct=""; foreach ($values as $v => $t) { $checked=($_POST[$name][0]==$v)?"checked":""; $ct .= ""; $ct .= $t." "; } return $ct; } function stripS($v) { return stripslashes($v); // remove compulsory wordpress slashes } ///////////////////////////////////////////// CONTENT FILTER ////////////////////////////////////////// function placeAdInContent($content) { $this->adCount++; if ($this->adCount > (int) get_option("adfever_maxads") ) { return ""; } $this->optionName=$this->horyzontalName; $this->setOption(); $pos=get_option("adfever_pos"); $ad=""; switch ($pos) { case "left": $css="text-align: left;"; $ad.="
".$this->getOption()."
"; break; case "center": $css="text-align:center;"; $ad.="
".$this->getOption()."
"; break; case "right": $css="text-align: right;"; $ad.="
".$this->getOption()."
"; break; default: $ad.="
".$this->getOption()."
"; } return $ad.$content; } } $myAdFever = new AdFever(); $myAdFever->initAdFever(); ?>
.. . ..... .. ... .. . . .
.. . ..... .. ... .. . . .
.. . ..... .. ... .. . . .
© VOYANCE OMEGA gagner de l'argent
bonjour à tous connaissez-vous vraiment votre vie
Blog
Votez pour ce site au Weborama

bonjour à tous connaissez-vous vraiment votre vie

Page d'accueil | balance.. 

: Ajouté le 1/7/2008 à 14:57

 

 

VOYANCE OMEGA

CABINET DE VOYANCE A DOMICILE

PLUSIEURS ANNEES D'EXPERIENCES 20ANS

 

JE PRATIQUE____________________________________________________________________

LES CARTES (Tarot, Oracle)

LE PENDULES

LES RUNES

NUMEROLOGIE (par date de naissance, l'heure de naissance numéro de rue)

SUR

DEMANDE_____________________________________________________________________

 

LA TABLETTE (Oui-Jà)

LA RADIESTHESIE (don de guerisseur)

L'HYPNOSE

L'ASTROLOGIE

TRAVAILLE SUR PHOTOGRAPHIE RECENTE OU ANCIENNE

 

 

Travaille soigné avec le ou la personne qui désire en savoir un peux plus sur son passé , son présent , son futur.

par ailleur je suis un professionnelle qui pratique le don de voyance depuis environ 20ans (ne suis pas un charlatan comme beaucoup savent le faire)

pour des raisons de confidentialité et de discrétion de chaque individus je vous demanderais de ne pas reproduire le meme travaille

 

mon travaille consiste à faire appel au 4 éléments de la terre qui sont

 

le Feu

la Terre

l'Eau

et le Vent.

 

ce travaille demande beaucoup d'energie et de concentration ces éléments sont indispensable pour avoir un bon résultat quelque soit votre demande !

 

je demande par conséquant un minimum de sérieux de votre part ainsi que de concentration et de confiance également

c'est pour cela que je demande toujour le paiement apres resultat

 

je peux recevoir ou je me deplace en mon (et ou votre) domicile sur RDV ou sans RDV

avec mon matériel

 

DU LUNDI AU SAMEDI

DE 8H30 à 17H30

Sans interruption

 

ou bien les consultations par téléphone sont aussi possible cela demande juste un peux plus de temp au niveau du travaille

j'effectue le meme travaille par téléphone que si j'etait face à vous*

en revanche le paiement s'effectue à l'avance par téléphone soit par le site via Paypal (recommandé) ou par cheque.

 

TARIF_______________________________________________________________

OFFRE DE BIENVENUE

Premiere consultation --> OFFERTE

 

Tarot, Oracle, Pendule, Runes : --> 15,00€ la consultation

 

Tablette (Oui-Jà), Numérologie : --> 20,00€ la consultation

 

Radiesthésie, L'Hypnose : --> 35,00€ / consultation

 

astrologie, thème astral : --> 40,00 / themes astral

 

TEMOIGNAGE :

 

profité de cette premiere consultation  cela en vaut vraiment la peine ce Monsieur est extra toute mes sinceres

félicitations il vous changeras la vie

(brigitte 38ans 51 Chalons en Champagne)

 

ce Monsieur à un talent fatastique et extraordinaire il à révéler mon passé qui etait enfoui depuis de nombreuse années cela m'a aidé à y voir plus clair un grand merci à vous.

(jean-marie 44ans 10 Troyes)

 

j'ai demandé à ce Monsieur de venir grace a ma femme puisque je souffrais d'une  sciatique névralgie aigue avec son don de magnétiseur il à su me remettre sur pied rapidement alors que je n'y croyais pas du tout au départ il ai vrai que j'etait sceptique ce Monsieur doit continué je fait régulierement appel à lui des que j'en ai besoin un grand merci

pour le soulagement que vous m'avez apporté.

(andré 52ans 51 Vitry-le-françois)

 

 

 

COORDONNEES________________________________________________________

Mail : gjolivel@hotmail.fr ou gaitan.jolivenvalente@dbmail.com

 

 

alors si vous vous posez trop de question sur votre devenir actuel ou futur a venir

n'ésiter pas je répond à toute question et

intérrogations de votre part

 

Don transmis de pére en fils depuis 3 générations dans ma famille

c'est pour vous dire que le travaille que j'effectue ai un travaille soigné et respecté de chaque personne

puisque la premiere régle dans la voyance : .

 

C'EST LA CONFIANCE

 

LE RESPECT

 

LA CONCENTRATION

 

ET LUCIDITE

 

 

 

j'organise également des soirées

si certain établissement Bar, Pub, Club, etc....

sont intéréssé pour ce type d'événements, n'ésité pas à prendre

contact avec moi je suis à votre entiere disposition.

 

 

 

 

 

 

 

*seul sont les cartes et les runes pour le moment

garanti satisfait ou rembourser sous 30jours

 

==>(siret en validation) 

 

 

 

Page d'accueil | balance.. 

» Catégorie Non spécifié
Poster un commentaire

10/7/2008 - Commentaire sans titre

Posté par iaoranamafio

image hébergée par photomaniak.com

Jolie blog bonne continuation et bonne soirée .

Lien Permanent

A propos du blogueur

voyance à domicile

Liens

Accueil
Voir mon profile
Archives
Email
Blog RSS

Catégories

Amis

0

Liens

connaissez vous votre signe astro

Services


Sondage

Créer un blog | Liens : Fonds d'écran gratuits | Jenifer |  Contacter l'auteur
Recherche personnalisée